diff options
author | Steven Barth <steven@midlink.org> | 2014-12-23 14:29:47 +0100 |
---|---|---|
committer | Steven Barth <steven@midlink.org> | 2014-12-23 14:29:47 +0100 |
commit | e9d2014a478807c7fac0581bb4a145901a3f23b4 (patch) | |
tree | 1310f1c52caf8bf260c2b57d4cbd73f905898e8c /handler.h | |
parent | 6b4570a107447034b5ae3861a7ca388d3052460a (diff) |
handler: replace calls to deprecated json_object_object_get
Signed-off-by: Steven Barth <steven@midlink.org>
Diffstat (limited to 'handler.h')
-rw-r--r-- | handler.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -35,7 +35,8 @@ json_check_type(json_object *obj, json_type type) static inline json_object * json_get_field(json_object *obj, const char *name, json_type type) { - return json_check_type(json_object_object_get(obj, name), type); + return json_object_object_get_ex(obj, name, &obj) ? + json_check_type(obj, type) : NULL; } int netifd_open_subdir(const char *name); |