summaryrefslogtreecommitdiffstats
path: root/generic/tclHash.c
diff options
context:
space:
mode:
authordkf <dkf@noemail.net>2004-03-30 22:27:47 (GMT)
committerdkf <dkf@noemail.net>2004-03-30 22:27:47 (GMT)
commit288329815b7649fad88b0d8c5524256e839be8fc (patch)
tree80c239bbe0fa5389c0f440b7627e90fea9711d0a /generic/tclHash.c
parentf6131cc2103842f355ed68c4035f6d0d1878ea65 (diff)
downloadtcl-288329815b7649fad88b0d8c5524256e839be8fc.zip
tcl-288329815b7649fad88b0d8c5524256e839be8fc.tar.gz
tcl-288329815b7649fad88b0d8c5524256e839be8fc.tar.bz2
More hash function cleaning up.
FossilOrigin-Name: f32595c38621c2bfbe6843a2bfd2db8ce6fe6683
Diffstat (limited to 'generic/tclHash.c')
-rw-r--r--generic/tclHash.c10
1 files changed, 3 insertions, 7 deletions
diff --git a/generic/tclHash.c b/generic/tclHash.c
index 3d8fd00..99502b3 100644
--- a/generic/tclHash.c
+++ b/generic/tclHash.c
@@ -10,7 +10,7 @@
* See the file "license.terms" for information on usage and redistribution
* of this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tclHash.c,v 1.16 2003/12/24 04:18:19 davygrvy Exp $
+ * RCS: @(#) $Id: tclHash.c,v 1.17 2004/03/30 22:27:49 dkf Exp $
*/
#include "tclInt.h"
@@ -1047,13 +1047,9 @@ HashStringKey(tablePtr, keyPtr)
*/
result = 0;
- while (1) {
- c = *string;
- if (c == 0) {
- break;
- }
+
+ for (c=*string++ ; c ; c=*string++) {
result += (result<<3) + c;
- string++;
}
return result;
}