projects
/
oweals
/
libubox.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
30e6cca
)
json_script: remove unneed argument check before calling __json_script_file_free().
author
Yousong Zhou
<yszhou4tech@gmail.com>
Wed, 12 Nov 2014 13:59:23 +0000
(21:59 +0800)
committer
Felix Fietkau
<nbd@openwrt.org>
Thu, 11 Dec 2014 16:59:22 +0000
(17:59 +0100)
NULL check is present at the begining of function body.
Signed-off-by: Yousong Zhou <yszhou4tech@gmail.com>
json_script.c
patch
|
blob
|
history
diff --git
a/json_script.c
b/json_script.c
index 8e7f5265ed4d42e9a784b6bcef14b818e6bebe78..6a17d3bd1ff7be7737ca322a30a3e9f46245f288 100644
(file)
--- a/
json_script.c
+++ b/
json_script.c
@@
-592,8
+592,7
@@
static void __json_script_file_free(struct json_script_file *f)
next = f->next;
free(f);
- if (next)
- return __json_script_file_free(next);
+ __json_script_file_free(next);
}
void