validate blobmsg attributes before converting them to json
authorFelix Fietkau <nbd@openwrt.org>
Mon, 7 Feb 2011 16:47:02 +0000 (17:47 +0100)
committerFelix Fietkau <nbd@openwrt.org>
Mon, 7 Feb 2011 16:47:02 +0000 (17:47 +0100)
blobmsg_json.c

index 8195763..6a6014b 100644 (file)
@@ -180,6 +180,9 @@ static void blobmsg_format_element(struct strbuf *s, struct blob_attr *attr, boo
        void *data;
        int len;
 
+       if (!blobmsg_check_attr(attr, false))
+               return;
+
        if (!array && blobmsg_name(attr)[0]) {
                blobmsg_format_string(s, blobmsg_name(attr));
                blobmsg_puts(s, ":", 1);