hotplug: avoid using the deprecated is_error() call, check for NULL pointer instead
authorFelix Fietkau <nbd@openwrt.org>
Fri, 29 Aug 2014 11:25:17 +0000 (13:25 +0200)
committerFelix Fietkau <nbd@openwrt.org>
Fri, 29 Aug 2014 11:25:17 +0000 (13:25 +0200)
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
plug/hotplug.c

index 6f65c17..061833a 100644 (file)
@@ -336,7 +336,7 @@ rule_handle_file(struct json_script_ctx *ctx, const char *name)
        json_object *obj;
 
        obj = json_object_from_file((char*)name);
-       if (is_error(obj))
+       if (!obj)
                return NULL;
 
        blob_buf_init(&script, 0);