qemu-ga: Fix unchecked strdup() by converting to g_strdup()
I figure it's freed somewhere deep down in QAPI, 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:
parent
13b10e05e4
commit
24a5304953
@ -61,7 +61,7 @@ struct GuestAgentInfo *qmp_guest_info(Error **err)
|
||||
|
||||
while (*cmd_list) {
|
||||
cmd_info = g_malloc0(sizeof(GuestAgentCommandInfo));
|
||||
cmd_info->name = strdup(*cmd_list);
|
||||
cmd_info->name = g_strdup(*cmd_list);
|
||||
cmd_info->enabled = qmp_command_is_enabled(cmd_info->name);
|
||||
|
||||
cmd_info_list = g_malloc0(sizeof(GuestAgentCommandInfoList));
|
||||
|
Loading…
Reference in New Issue
Block a user