mirror of
https://github.com/akheron/jansson.git
synced 2025-04-06 05:55:05 +00:00
Merge pull request #121 from jjwchoy/master
Added missing return valua check in test
This commit is contained in:
commit
042d4b2a6b
1 changed files with 2 additions and 2 deletions
|
@ -96,14 +96,14 @@ static void run_tests()
|
|||
/* non-incref'd object */
|
||||
j = json_object();
|
||||
rv = json_unpack(j, "o", &j2);
|
||||
if(j2 != j || j->refcount != 1)
|
||||
if(rv || j2 != j || j->refcount != 1)
|
||||
fail("json_unpack object failed");
|
||||
json_decref(j);
|
||||
|
||||
/* incref'd object */
|
||||
j = json_object();
|
||||
rv = json_unpack(j, "O", &j2);
|
||||
if(j2 != j || j->refcount != 2)
|
||||
if(rv || j2 != j || j->refcount != 2)
|
||||
fail("json_unpack object failed");
|
||||
json_decref(j);
|
||||
json_decref(j);
|
||||
|
|
Loading…
Add table
Reference in a new issue