mirror of
https://github.com/akheron/jansson.git
synced 2025-04-05 21:45:04 +00:00
Fix memory leaks in json_equal() tests
This commit is contained in:
parent
93ac06c902
commit
7f8684828d
1 changed files with 5 additions and 2 deletions
|
@ -137,12 +137,12 @@ static void test_equal_object()
|
|||
if(json_equal(object1, object2))
|
||||
fail("json_equal fails for two inequal objects");
|
||||
|
||||
json_object_set(object2, "c", json_integer(3));
|
||||
json_object_set_new(object2, "c", json_integer(3));
|
||||
if(json_equal(object1, object2))
|
||||
fail("json_equal fails for two inequal objects");
|
||||
|
||||
json_object_del(object2, "c");
|
||||
json_object_set(object2, "d", json_integer(2));
|
||||
json_object_set_new(object2, "d", json_integer(2));
|
||||
if(json_equal(object1, object2))
|
||||
fail("json_equal fails for two inequal objects");
|
||||
|
||||
|
@ -174,6 +174,9 @@ static void test_equal_complex()
|
|||
if(!json_equal(value1, value2))
|
||||
fail("json_equal fails for two inequal strings");
|
||||
|
||||
json_decref(value1);
|
||||
json_decref(value2);
|
||||
|
||||
/* TODO: There's no negative test case here */
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue