diff options
author | Luiz Capitulino <lcapitulino@redhat.com> | 2014-03-08 12:20:06 -0500 |
---|---|---|
committer | Luiz Capitulino <lcapitulino@redhat.com> | 2014-03-11 09:07:42 -0400 |
commit | 2a7a1a56d1e30de07cf7d7636a35bf7706b9500e (patch) | |
tree | 39e8132d10ca83ee51fb1e00936ee103d37593a0 | |
parent | 5d371f41b4db8e47c89626ecf9d9914119583e23 (diff) | |
download | qemu-2a7a1a56d1e30de07cf7d7636a35bf7706b9500e.tar.gz qemu-2a7a1a56d1e30de07cf7d7636a35bf7706b9500e.tar.bz2 qemu-2a7a1a56d1e30de07cf7d7636a35bf7706b9500e.zip |
tests: test-qmp-commands: Fix double free
The ret variable is freed twice, but on the second time we actually want
to free ret3 instead. Don't know why this didn't explode.
Reported-by: Peter Maydell <peter.maydell@linaro.org>
Tested-by: Peter Maydell <peter.maydell@linaro.org>
Reviewed-by: Eric Blake <eblake@redhat.com>
Signed-off-by: Luiz Capitulino <lcapitulino@redhat.com>
-rw-r--r-- | tests/test-qmp-commands.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test-qmp-commands.c b/tests/test-qmp-commands.c index 8e62c2d8ad..554e222b32 100644 --- a/tests/test-qmp-commands.c +++ b/tests/test-qmp-commands.c @@ -141,7 +141,7 @@ static void test_dispatch_cmd_io(void) ret3 = qobject_to_qint(test_qmp_dispatch(req)); assert(qint_get_int(ret3) == 66); - QDECREF(ret); + QDECREF(ret3); QDECREF(req); } |