Change 32723 by [EMAIL PROTECTED] on 2007/12/25 15:05:33
Subject: patch - chg 32721 missed a couple Nullstrs
From: jimc <[EMAIL PROTECTED]>
Date: Tue, 25 Dec 2007 05:39:30 -0700
Message-ID: <[EMAIL PROTECTED]>
Affected files ...
... //depot/perl/x2p/hash.c#18 edit
Differences ...
==== //depot/perl/x2p/hash.c#18 (text) ====
Index: perl/x2p/hash.c
--- perl/x2p/hash.c#17~26033~ 2005-11-07 04:26:29.000000000 -0800
+++ perl/x2p/hash.c 2007-12-25 07:05:33.000000000 -0800
@@ -25,7 +25,7 @@
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 @@
continue;
return entry->hent_val;
}
- return Nullstr;
+ return NULL;
}
bool
End of Patch.