qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[PATCH v2 2/2] qga/main: Don't mismatch g_strsplit/g_free in split_list(


From: pannengyuan
Subject: [PATCH v2 2/2] qga/main: Don't mismatch g_strsplit/g_free in split_list()
Date: Fri, 10 Jan 2020 17:17:10 +0800

From: Pan Nengyuan <address@hidden>

fix a mismatch between g_strsplit and g_free

Reported-by: Laurent Vivier <address@hidden>
Signed-off-by: Pan Nengyuan <address@hidden>
---
Changes v2 to v1:
- fix a mismatch in qga/main.c
---
 qga/main.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/qga/main.c b/qga/main.c
index c35c2a2120..a72ae074f4 100644
--- a/qga/main.c
+++ b/qga/main.c
@@ -933,7 +933,7 @@ static GList *split_list(const gchar *str, const gchar 
*delim)
     for (i = 0; strv[i]; i++) {
         list = g_list_prepend(list, strv[i]);
     }
-    g_free(strv);
+    g_strfreev(strv);
 
     return list;
 }
-- 
2.21.0.windows.1





reply via email to

[Prev in Thread] Current Thread [Next in Thread]