]> git.proxmox.com Git - mirror_qemu.git/commit
hmp: Drop pointless allocation during qapi visit
authorEric Blake <eblake@redhat.com>
Fri, 29 Jan 2016 13:48:42 +0000 (06:48 -0700)
committerMarkus Armbruster <armbru@redhat.com>
Mon, 8 Feb 2016 16:29:55 +0000 (17:29 +0100)
commit7019738d4c9ce49b8fad09e9774393ad127b835d
tree44bbdf582bf22e32f4c26ffb4566ee01514a4245
parente408311546b633b232312450d9017f4db21df0dc
hmp: Drop pointless allocation during qapi visit

The qapi visitor contract allows us to visit a virtual structure,
where we don't have any corresponding qapi struct.  Most such uses
pass NULL for @obj; but these two callers were passing a dummy
pointer, which then gets allocated to heap memory but then
immediately freed without use.  Clean this up to suppress unwanted
allocation, like we do elsewhere.

Signed-off-by: Eric Blake <eblake@redhat.com>
Reviewed-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Message-Id: <1454075341-13658-7-git-send-email-eblake@redhat.com>
Signed-off-by: Markus Armbruster <armbru@redhat.com>
hmp.c
vl.c