🐞 fix(utable): fix memleak in test case
This commit is contained in:
@@ -676,15 +676,16 @@ cJSON *ipfix_init_utable_from_log_json(struct utable *table, const char *test_js
|
||||
|
||||
cJSON *json_array = cJSON_CreateIntArray((const int *)array, array_sz);
|
||||
cJSON_Delete(item->child);
|
||||
item->type = cJSON_String;
|
||||
item->child = NULL;
|
||||
|
||||
item->type = cJSON_String;
|
||||
item->valuestring = cJSON_PrintUnformatted(json_array);
|
||||
cJSON_Delete(json_array);
|
||||
|
||||
free(array);
|
||||
free(long_array);
|
||||
}
|
||||
if (array_item->type == cJSON_String)
|
||||
else if (array_item->type == cJSON_String)
|
||||
{
|
||||
char **array = (char **)malloc(sizeof(char *) * array_sz);
|
||||
size_t *sz_value = (size_t *)malloc(sizeof(size_t) * array_sz);
|
||||
@@ -698,7 +699,7 @@ cJSON *ipfix_init_utable_from_log_json(struct utable *table, const char *test_js
|
||||
}
|
||||
}
|
||||
utable_add_cstring_array(table, item->string, (const char **)array, sz_value, array_sz);
|
||||
|
||||
free(sz_value);
|
||||
cJSON *json_array = cJSON_CreateStringArray((const char **)array, array_sz);
|
||||
item->valuestring = cJSON_PrintUnformatted(json_array);
|
||||
item->type = cJSON_String;
|
||||
|
||||
4
deps/utable/test/unit_test_utable.cpp
vendored
4
deps/utable/test/unit_test_utable.cpp
vendored
@@ -601,7 +601,7 @@ TEST(utable_test, replace_8k_cstring)
|
||||
utable_free(table);
|
||||
}
|
||||
|
||||
TEST(utable_test, replace_cstring_many_times)
|
||||
TEST(utable_test, replace_cstring_1w_times)
|
||||
{
|
||||
struct utable *table = utable_new();
|
||||
|
||||
@@ -614,7 +614,7 @@ TEST(utable_test, replace_cstring_many_times)
|
||||
|
||||
test_utable_assert_str(table, "key1", str);
|
||||
|
||||
for(int i=0; i<100000; i++)
|
||||
for(int i=0; i<10000; i++)
|
||||
{
|
||||
utable_delete(table, "key1", strlen("key1"));
|
||||
utable_add_cstring(table, "key1", str, strlen(str));
|
||||
|
||||
Reference in New Issue
Block a user