diff mbox series

[PULL,08/11] tests/qtest/fuzz: fix memleak in qos_fuzz.c

Message ID 20240624091043.177484-9-thuth@redhat.com (mailing list archive)
State New, archived
Headers show
Series [PULL,01/11] hw/s390x/ccw: Make s390_ccw_get_dev_info() return a bool | expand

Commit Message

Thomas Huth June 24, 2024, 9:10 a.m. UTC
From: Dmitry Frolov <frolov@swemel.ru>

Found with fuzzing for qemu-8.2, but also relevant for master

Signed-off-by: Dmitry Frolov <frolov@swemel.ru>
Reviewed-by: Thomas Huth <thuth@redhat.com>
Reviewed-by: Alexander Bulekov <alxndr@bu.edu>
Message-ID: <20240521103106.119021-3-frolov@swemel.ru>
Signed-off-by: Thomas Huth <thuth@redhat.com>
---
 tests/qtest/fuzz/qos_fuzz.c | 1 +
 1 file changed, 1 insertion(+)
diff mbox series

Patch

diff --git a/tests/qtest/fuzz/qos_fuzz.c b/tests/qtest/fuzz/qos_fuzz.c
index b71e945c5f..d3839bf999 100644
--- a/tests/qtest/fuzz/qos_fuzz.c
+++ b/tests/qtest/fuzz/qos_fuzz.c
@@ -180,6 +180,7 @@  static void walk_path(QOSGraphNode *orig_path, int len)
 
         fuzz_path_vec = path_vec;
     } else {
+        g_string_free(cmd_line, true);
         g_free(path_vec);
     }