Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.openwrt.org/project/libubox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYousong Zhou <yszhou4tech@gmail.com>2014-12-17 00:15:36 +0300
committerFelix Fietkau <nbd@openwrt.org>2014-12-22 17:46:21 +0300
commit13b5c1d4ca488575ee3dd4726b669f768fad8ffa (patch)
tree2c44a4cb5fb7c48987b3327950fa92be555f81c1 /json_script.c
parent0d22684faaeae98f6fea23fbf2000d423261fe5f (diff)
json_script: fix logic invert of handle_expr_not().
Signed-off-by: Yousong Zhou <yszhou4tech@gmail.com>
Diffstat (limited to 'json_script.c')
-rw-r--r--json_script.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/json_script.c b/json_script.c
index 6a17d3b..73c2502 100644
--- a/json_script.c
+++ b/json_script.c
@@ -333,12 +333,16 @@ static int handle_expr_or(struct json_call *call, struct blob_attr *expr)
static int handle_expr_not(struct json_call *call, struct blob_attr *expr)
{
struct blob_attr *tb[3];
+ int ret;
json_get_tuple(expr, tb, BLOBMSG_TYPE_ARRAY, 0);
if (!tb[1])
return -1;
- return json_process_expr(call, tb[1]);
+ ret = json_process_expr(call, tb[1]);
+ if (ret < 0)
+ return ret;
+ return !ret;
}
static const struct json_handler expr[] = {