Added missing rv check - caught by clang

This commit is contained in:
Jason Choy 2013-06-07 13:08:22 +01:00
parent 5cc594c9e8
commit ddd10b5e0b

View file

@ -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);