|
From: <sv...@va...> - 2013-01-22 00:25:16
|
florian 2013-01-22 00:25:05 +0000 (Tue, 22 Jan 2013)
New Revision: 13258
Log:
Make sure the variable is completely initialised. That's good
practice and also silences a complaint from the Coverity checker.
Modified files:
trunk/helgrind/libhb_core.c
Modified: trunk/helgrind/libhb_core.c (+1 -0)
===================================================================
--- trunk/helgrind/libhb_core.c 2013-01-21 22:05:47 +00:00 (rev 13257)
+++ trunk/helgrind/libhb_core.c 2013-01-22 00:25:05 +00:00 (rev 13258)
@@ -4057,6 +4057,7 @@
example.magic = RCEC_MAGIC;
example.rc = 0;
example.rcX = 0;
+ example.next = NULL;
main_get_stacktrace( thr, &example.frames[0], N_FRAMES );
hash = 0;
for (i = 0; i < N_FRAMES; i++) {
|