summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEric Blake <eblake@redhat.com>2016-04-28 15:45:28 -0600
committerTimothy Pearson <tpearson@raptorengineering.com>2019-11-29 20:03:50 -0600
commit1a9fbfee60db94894b7590ca298f8963b583c82b (patch)
tree87af38ba54100cf4af50b1978171f3be3574a577
parent74ed7215e67231170e5f8a82d638fb32dc19f9a7 (diff)
downloadhqemu-1a9fbfee60db94894b7590ca298f8963b583c82b.zip
hqemu-1a9fbfee60db94894b7590ca298f8963b583c82b.tar.gz
qapi: Don't pass NULL to printf in string input visitor
Make sure the error message for visit_type_uint64() gracefully handles a NULL 'name' when called from the top level or a list context, as not all the world behaves like glibc in allowing NULL through a printf-family %s. Signed-off-by: Eric Blake <eblake@redhat.com> Message-Id: <1461879932-9020-21-git-send-email-eblake@redhat.com> Signed-off-by: Markus Armbruster <armbru@redhat.com>
-rw-r--r--qapi/string-input-visitor.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/qapi/string-input-visitor.c b/qapi/string-input-visitor.c
index ab12953..5ea2d77 100644
--- a/qapi/string-input-visitor.c
+++ b/qapi/string-input-visitor.c
@@ -222,7 +222,7 @@ static void parse_type_int64(Visitor *v, const char *name, int64_t *obj,
return;
error:
- error_setg(errp, QERR_INVALID_PARAMETER_VALUE, name,
+ error_setg(errp, QERR_INVALID_PARAMETER_VALUE, name ? name : "null",
"an int64 value or range");
}
OpenPOWER on IntegriCloud