test.c: Fix buffer overrun found by coverity

This commit is contained in:
Max Bruckner 2017-02-07 19:15:18 +01:00
parent 1f5538f79d
commit c866abd842
1 changed files with 1 additions and 1 deletions

2
test.c
View File

@ -114,7 +114,7 @@ static int print_preallocated(cJSON *root)
}
/* create buffer to fail */
len_fail = strlen(out);
len_fail = strlen(out) + sizeof('\0');
buf_fail = (char*)malloc(len_fail);
if (buf_fail == NULL)
{