blobmsg: fix blobmsg_parse_array, drop name field requirement
authorFelix Fietkau <nbd@openwrt.org>
Sun, 13 Jan 2013 08:07:32 +0000 (09:07 +0100)
committerFelix Fietkau <nbd@openwrt.org>
Sun, 13 Jan 2013 08:07:32 +0000 (09:07 +0100)
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
blobmsg.c

index 8e2d73a..7257eae 100644 (file)
--- a/blobmsg.c
+++ b/blobmsg.c
@@ -102,7 +102,7 @@ int blobmsg_parse_array(const struct blobmsg_policy *policy, int policy_len,
                    blob_id(attr) != policy[i].type)
                        continue;
 
-               if (!blobmsg_check_attr(attr, true))
+               if (!blobmsg_check_attr(attr, false))
                        return -1;
 
                if (tb[i])