diff options
| author | Markus Armbruster | 2014-05-28 11:17:03 +0200 |
|---|---|---|
| committer | Kevin Wolf | 2014-05-30 14:26:54 +0200 |
| commit | f25391c2a6ef1674384204265429520ea50e82bc (patch) | |
| tree | 68b7ed23f2352750d63ad46098ac3ff813e72ffb /block | |
| parent | blockdev: Plug memory leak in drive_init() (diff) | |
| download | qemu-f25391c2a6ef1674384204265429520ea50e82bc.tar.gz qemu-f25391c2a6ef1674384204265429520ea50e82bc.tar.xz qemu-f25391c2a6ef1674384204265429520ea50e82bc.zip | |
block/qapi: Plug memory leak in dump_qobject() case QTYPE_QERROR
Introduced in commit a8d8ecb. Spotted by Coverity.
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Reviewed-by: Benoit Canet <benoit@irqsave.net>
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
Diffstat (limited to 'block')
| -rw-r--r-- | block/qapi.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/block/qapi.c b/block/qapi.c index 75f44f1537..97e16418ef 100644 --- a/block/qapi.c +++ b/block/qapi.c @@ -475,6 +475,7 @@ static void dump_qobject(fprintf_function func_fprintf, void *f, case QTYPE_QERROR: { QString *value = qerror_human((QError *)obj); func_fprintf(f, "%s", qstring_get_str(value)); + QDECREF(value); break; } case QTYPE_NONE: |
