proto-shell: fix a typo in string length calculation
authorFelix Fietkau <nbd@openwrt.org>
Mon, 3 Oct 2011 00:41:20 +0000 (02:41 +0200)
committerFelix Fietkau <nbd@openwrt.org>
Mon, 3 Oct 2011 00:41:20 +0000 (02:41 +0200)
proto-shell.c

index 555004e..7eeff28 100644 (file)
@@ -408,7 +408,7 @@ proto_shell_parse_config(struct config_param_list *config, json_object *obj)
                if (attrs[i].type > BLOBMSG_TYPE_LAST)
                        goto error;
 
-               str_len += strlen(attrs[i].name + 1);
+               str_len += strlen(attrs[i].name) + 1;
        }
 
        str_buf = malloc(str_len);