From 9251866320b5f8329a043bb56b3a794f78d12849 Mon Sep 17 00:00:00 2001 From: David 'Digit' Turner Date: Mon, 10 May 2010 23:26:01 -0700 Subject: Upstream: integrate various misc. minor changes Change-Id: I7d3eca1350f980d93f9f3198fa5250fb776de729 --- qjson.c | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'qjson.c') diff --git a/qjson.c b/qjson.c index 9ad8a91..483c667 100644 --- a/qjson.c +++ b/qjson.c @@ -53,6 +53,10 @@ QObject *qobject_from_json(const char *string) return qobject_from_jsonv(string, NULL); } +/* + * IMPORTANT: This function aborts on error, thus it must not + * be used with untrusted arguments. + */ QObject *qobject_from_jsonf(const char *string, ...) { QObject *obj; @@ -62,6 +66,7 @@ QObject *qobject_from_jsonf(const char *string, ...) obj = qobject_from_jsonv(string, &ap); va_end(ap); + assert(obj != NULL); return obj; } -- cgit v1.1