From 95fd025d429635b6ac2236a466a9e576b0eb0bef Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Henrik=20Grubbstr=C3=B6m=20=28Grubba=29?= <grubba@grubba.org> Date: Mon, 25 May 1998 21:38:31 +0200 Subject: [PATCH] verify_shared_strings_table() now restores full_hash_value. Rev: src/stralloc.c:1.37 --- src/stralloc.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/stralloc.c b/src/stralloc.c index 64ff0a111d..25a59d4e68 100644 --- a/src/stralloc.c +++ b/src/stralloc.c @@ -15,7 +15,7 @@ #include <ctype.h> -RCSID("$Id: stralloc.c,v 1.36 1998/05/25 10:38:46 hubbe Exp $"); +RCSID("$Id: stralloc.c,v 1.37 1998/05/25 19:38:31 grubba Exp $"); #define BEGIN_HASH_SIZE 997 #define MAX_AVG_LINK_LENGTH 3 @@ -380,6 +380,7 @@ void check_string(struct pike_string *s) void verify_shared_strings_tables(void) { unsigned INT32 e, h, num=0; + unsigned INT32 orig_full_hash = full_hash_value; struct pike_string *s; for(e=0;e<htable_size;e++) @@ -425,6 +426,7 @@ void verify_shared_strings_tables(void) } if(num != num_strings) fatal("Num strings is wrong %d!=%d\n",num,num_strings); + full_hash_value = orig_full_hash; } int safe_debug_findstring(struct pike_string *foo) -- GitLab