summaryrefslogtreecommitdiff
path: root/block.c
diff options
context:
space:
mode:
authorMarkus Armbruster <armbru@redhat.com>2017-02-28 22:26:58 +0100
committerMarkus Armbruster <armbru@redhat.com>2017-03-07 16:07:47 +0100
commit57348c2f18d2f9f77f4d0ecdc5a83029a933c5d8 (patch)
tree5f84ec467c5f1475f280bd6945e7a61a5de21bd3 /block.c
parentbff17e84a985033a880302394f1a8d74d013f9ef (diff)
downloadqemu-57348c2f18d2f9f77f4d0ecdc5a83029a933c5d8.tar.gz
qobject: Propagate parse errors through qobject_from_json()
The next few commits will put the errors to use where appropriate. Signed-off-by: Markus Armbruster <armbru@redhat.com> Reviewed-by: Kevin Wolf <kwolf@redhat.com> Reviewed-by: Eric Blake <eblake@redhat.com> Message-Id: <1488317230-26248-13-git-send-email-armbru@redhat.com>
Diffstat (limited to 'block.c')
-rw-r--r--block.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/block.c b/block.c
index f293ccb5af..5ef5c7c174 100644
--- a/block.c
+++ b/block.c
@@ -1262,7 +1262,7 @@ static QDict *parse_json_filename(const char *filename, Error **errp)
ret = strstart(filename, "json:", &filename);
assert(ret);
- options_obj = qobject_from_json(filename);
+ options_obj = qobject_from_json(filename, NULL);
if (!options_obj) {
error_setg(errp, "Could not parse the JSON options");
return NULL;