]> asedeno.scripts.mit.edu Git - PuTTY.git/blobdiff - tree234.c
Fix another error-reporting bug, in which sk_newlistener would fail to
[PuTTY.git] / tree234.c
index b5895d0e314e6d557cc7a47ccd68968588c20b2c..84e8c1871b21cbc2700ae0e3fd6989cbe9ee8e0a 100644 (file)
--- a/tree234.c
+++ b/tree234.c
@@ -136,6 +136,7 @@ static void *add234_internal(tree234 * t, void *e, int index)
        return orig_e;
     }
 
+    n = NULL; /* placate gcc; will always be set below since t->root != NULL */
     np = &t->root;
     while (*np) {
        int childnum;