|
@@ -59,10 +59,6 @@ QObject *qobject_from_json(const char *string, Error **errp)
|
|
|
return qobject_from_jsonv(string, NULL, errp);
|
|
|
}
|
|
|
|
|
|
-/*
|
|
|
- * IMPORTANT: This function aborts on error, thus it must not
|
|
|
- * be used with untrusted arguments.
|
|
|
- */
|
|
|
QObject *qobject_from_jsonf(const char *string, ...)
|
|
|
{
|
|
|
QObject *obj;
|
|
@@ -72,7 +68,6 @@ QObject *qobject_from_jsonf(const char *string, ...)
|
|
|
obj = qobject_from_jsonv(string, &ap, &error_abort);
|
|
|
va_end(ap);
|
|
|
|
|
|
- assert(obj != NULL);
|
|
|
return obj;
|
|
|
}
|
|
|
|