All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] tests: unit: add NULL-pointer check
@ 2022-09-05 11:10 Paolo Bonzini
  2022-09-05 15:19 ` Alex Bennée
  2022-09-06  5:01 ` Markus Armbruster
  0 siblings, 2 replies; 4+ messages in thread
From: Paolo Bonzini @ 2022-09-05 11:10 UTC (permalink / raw)
  To: qemu-devel; +Cc: armbru

In CID 1432593, Coverity complains that the result of qdict_crumple()
might leak if it is not a dictionary.  This is not a practical concern
since the test would fail immediately with a NULL pointer dereference
in qdict_size().

However, it is not nice to depend on qdict_size() crashing, so add an
explicit assertion that that the crumpled object was indeed a dictionary.

Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
---
 tests/unit/check-block-qdict.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tests/unit/check-block-qdict.c b/tests/unit/check-block-qdict.c
index 5a25825093..751c58e737 100644
--- a/tests/unit/check-block-qdict.c
+++ b/tests/unit/check-block-qdict.c
@@ -504,7 +504,7 @@ static void qdict_crumple_test_empty(void)
     src = qdict_new();
 
     dst = qobject_to(QDict, qdict_crumple(src, &error_abort));
-
+    g_assert(dst);
     g_assert_cmpint(qdict_size(dst), ==, 0);
 
     qobject_unref(src);
-- 
2.37.2



^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2022-09-06  6:09 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-09-05 11:10 [PATCH] tests: unit: add NULL-pointer check Paolo Bonzini
2022-09-05 15:19 ` Alex Bennée
2022-09-06  5:01 ` Markus Armbruster
2022-09-06  6:07   ` Paolo Bonzini

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.