diff options
author | Stefan Weil | 2012-09-03 21:19:11 +0200 |
---|---|---|
committer | Luiz Capitulino | 2012-09-05 20:48:57 +0200 |
commit | 149474c93490e1c66f838391bd491db83136d91d (patch) | |
tree | 6ea6f647d12fe60564e40a93e3fcb2dd60d27deb | |
parent | qapi: Fix potential NULL pointer segfault (diff) | |
download | qemu-149474c93490e1c66f838391bd491db83136d91d.tar.gz qemu-149474c93490e1c66f838391bd491db83136d91d.tar.xz qemu-149474c93490e1c66f838391bd491db83136d91d.zip |
json-parser: Fix potential NULL pointer segfault
Report from smatch:
json-parser.c:474 parse_object(62) error: potential null derefence 'dict'.
json-parser.c:553 parse_array(75) error: potential null derefence 'list'.
Label 'out' in json-parser.c can be called with list == NULL
which is passed to QDECREF.
Modify QDECREF to handle a NULL argument (inline function qobject_decref
already handles them, too).
Signed-off-by: Stefan Weil <sw@weilnetz.de>
Signed-off-by: Luiz Capitulino <lcapitulino@redhat.com>
-rw-r--r-- | qobject.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -71,7 +71,7 @@ typedef struct QObject { /* High-level interface for qobject_decref() */ #define QDECREF(obj) \ - qobject_decref(QOBJECT(obj)) + qobject_decref(obj ? QOBJECT(obj) : NULL) /* Initialize an object to default values */ #define QOBJECT_INIT(obj, qtype_type) \ |