mirror of
https://github.com/izzy2lost/xemu.git
synced 2026-07-06 00:20:22 -07:00
qapi: Fix unchecked strdup() by converting to g_strdup()
Note that we already free with g_free(). Signed-off-by: Markus Armbruster <armbru@redhat.com> Reviewed-by: Eric Blake <eblake@redhat.com> Reviewed-by: Luiz Capitulino <lcapitulino@redhat.com> Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
This commit is contained in:
committed by
Stefan Hajnoczi
parent
be168af860
commit
13b10e05e4
+1
-1
@@ -92,7 +92,7 @@ char **qmp_get_command_list(void)
|
||||
list_head = list = g_malloc0(count * sizeof(char *));
|
||||
|
||||
QTAILQ_FOREACH(cmd, &qmp_commands, node) {
|
||||
*list = strdup(cmd->name);
|
||||
*list = g_strdup(cmd->name);
|
||||
list++;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user