From 9f81efba3e70526d7ad15510192ad42b968240c8 Mon Sep 17 00:00:00 2001 From: Felix Fietkau Date: Wed, 20 Feb 2013 18:46:08 +0100 Subject: [PATCH] hotplug-rule: fix off-by-one error in blobmsg string buffer realloc Signed-off-by: Felix Fietkau --- hotplug-rule.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hotplug-rule.c b/hotplug-rule.c index b157fcd..b90ae52 100644 --- a/hotplug-rule.c +++ b/hotplug-rule.c @@ -354,7 +354,7 @@ static void cmd_add_string(const char *pattern, struct blob_attr *msg) } if (cur_len) { - dest = blobmsg_realloc_string_buffer(&b, cur_len); + dest = blobmsg_realloc_string_buffer(&b, cur_len + 1); memcpy(dest + len, cur, cur_len); len += cur_len; } -- 2.11.0