]> granicus.if.org Git - nethack/commitdiff
Silence Yet Another Valgrind complaint
authorPasi Kallinen <paxed@alt.org>
Thu, 29 Dec 2016 17:19:00 +0000 (19:19 +0200)
committerPasi Kallinen <paxed@alt.org>
Thu, 29 Dec 2016 17:19:00 +0000 (19:19 +0200)
src/end.c

index 08141258fb6ee7cac0343fc1dea6a2dfd06ae72e..09213205b2e6f5ab6120e989f3804b54a94870c1 100644 (file)
--- a/src/end.c
+++ b/src/end.c
@@ -1824,6 +1824,7 @@ const char *killername;
     if (k == (struct kinfo *) 0) {
         /* no match, add a new delayed killer to the list */
         k = (struct kinfo *) alloc(sizeof(struct kinfo));
+        (void) memset((genericptr_t)k, 0, sizeof(struct kinfo));
         k->id = id;
         k->next = killer.next;
         killer.next = k;