From 958012387b5bd493ea5fdabe815e9f4fd4e55dc5 Mon Sep 17 00:00:00 2001 From: Felix Fietkau Date: Mon, 3 Oct 2011 02:41:20 +0200 Subject: [PATCH] proto-shell: fix a typo in string length calculation --- proto-shell.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/proto-shell.c b/proto-shell.c index 555004e..7eeff28 100644 --- a/proto-shell.c +++ b/proto-shell.c @@ -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); -- 2.11.0