diff options
author | Markus Armbruster | 2017-02-28 22:26:58 +0100 |
---|---|---|
committer | Markus Armbruster | 2017-03-07 16:07:47 +0100 |
commit | 57348c2f18d2f9f77f4d0ecdc5a83029a933c5d8 (patch) | |
tree | 5f84ec467c5f1475f280bd6945e7a61a5de21bd3 /include | |
parent | test-qobject-input-visitor: Abort earlier on bad test input (diff) | |
download | qemu-57348c2f18d2f9f77f4d0ecdc5a83029a933c5d8.tar.gz qemu-57348c2f18d2f9f77f4d0ecdc5a83029a933c5d8.tar.xz qemu-57348c2f18d2f9f77f4d0ecdc5a83029a933c5d8.zip |
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 'include')
-rw-r--r-- | include/qapi/qmp/qjson.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/qapi/qmp/qjson.h b/include/qapi/qmp/qjson.h index 6fe42d0f13..6e84082d5f 100644 --- a/include/qapi/qmp/qjson.h +++ b/include/qapi/qmp/qjson.h @@ -17,7 +17,7 @@ #include "qapi/qmp/qobject.h" #include "qapi/qmp/qstring.h" -QObject *qobject_from_json(const char *string); +QObject *qobject_from_json(const char *string, Error **errp); QObject *qobject_from_jsonf(const char *string, ...) GCC_FMT_ATTR(1, 2); QObject *qobject_from_jsonv(const char *string, va_list *ap, Error **errp) GCC_FMT_ATTR(1, 0); |