mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-06 01:03:55 -06:00
qdict: Make conversion from QObject * accept null
qobject_to_qdict() crashes on null, which is a trap for the unwary. Return null instead, and simplify a few callers. Signed-off-by: Markus Armbruster <armbru@redhat.com> Message-Id: <1444918537-18107-4-git-send-email-armbru@redhat.com> Reviewed-by: Eric Blake <eblake@redhat.com> Reviewed-by: Luiz Capitulino <lcapitulino@redhat.com>
This commit is contained in:
parent
14b6160099
commit
89cad9f3ec
2 changed files with 6 additions and 11 deletions
|
@ -46,9 +46,9 @@ QDict *qdict_new(void)
|
|||
*/
|
||||
QDict *qobject_to_qdict(const QObject *obj)
|
||||
{
|
||||
if (qobject_type(obj) != QTYPE_QDICT)
|
||||
if (!obj || qobject_type(obj) != QTYPE_QDICT) {
|
||||
return NULL;
|
||||
|
||||
}
|
||||
return container_of(obj, QDict, base);
|
||||
}
|
||||
|
||||
|
@ -269,7 +269,7 @@ QList *qdict_get_qlist(const QDict *qdict, const char *key)
|
|||
*/
|
||||
QDict *qdict_get_qdict(const QDict *qdict, const char *key)
|
||||
{
|
||||
return qobject_to_qdict(qdict_get_obj(qdict, key, QTYPE_QDICT));
|
||||
return qobject_to_qdict(qdict_get(qdict, key));
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue