diff options
-rw-r--r-- | hotplug-rule.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hotplug-rule.c b/hotplug-rule.c index b90ae52..cb31c3f 100644 --- a/hotplug-rule.c +++ b/hotplug-rule.c @@ -467,7 +467,7 @@ rule_file_load(const char *filename) return NULL; obj = json_object_from_file((char *) filename); - if (!obj) + if (is_error(obj)) return NULL; if (!json_object_is_type(obj, json_type_array)) { |