patch - chg 32721 missed a couple Nullstrs
Jim Cromie [Tue, 25 Dec 2007 05:39:30 +0000 (22:39 -0700)]
Message-ID: <4770FA02.2080800@gmail.com>

p4raw-id: //depot/perl@32723

x2p/hash.c

index 8c218b6..fb743fd 100644 (file)
@@ -25,7 +25,7 @@ hfetch(register HASH *tb, char *key)
     register HENT *entry;
 
     if (!tb)
-       return Nullstr;
+       return NULL;
     for (s=key,                i=0,    hash = 0;
       /* while */ *s;
         s++,           i++,    hash *= 5) {
@@ -39,7 +39,7 @@ hfetch(register HASH *tb, char *key)
            continue;
        return entry->hent_val;
     }
-    return Nullstr;
+    return NULL;
 }
 
 bool