diff options
Diffstat (limited to 'lstring.c')
-rw-r--r-- | lstring.c | 10 |
1 files changed, 7 insertions, 3 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lstring.c,v 1.8 1997/12/09 13:35:19 roberto Exp roberto $ | 2 | ** $Id: lstring.c,v 1.9 1997/12/30 19:15:52 roberto Exp roberto $ |
3 | ** String table (keeps all strings handled by Lua) | 3 | ** String table (keeps all strings handled by Lua) |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
@@ -102,17 +102,21 @@ static TaggedString *insert (char *buff, int tag, stringtable *tb) | |||
102 | { | 102 | { |
103 | TaggedString *ts; | 103 | TaggedString *ts; |
104 | unsigned long h = hash(buff, tag); | 104 | unsigned long h = hash(buff, tag); |
105 | int size = tb->size; | ||
105 | int i; | 106 | int i; |
106 | int j = -1; | 107 | int j = -1; |
107 | if ((long)tb->nuse*3 >= (long)tb->size*2) | 108 | if ((long)tb->nuse*3 >= (long)size*2) { |
108 | grow(tb); | 109 | grow(tb); |
109 | for (i = h%tb->size; (ts = tb->hash[i]) != NULL; i = (i+1)%tb->size) { | 110 | size = tb->size; |
111 | } | ||
112 | for (i = h%size; (ts = tb->hash[i]) != NULL; ) { | ||
110 | if (ts == &EMPTY) | 113 | if (ts == &EMPTY) |
111 | j = i; | 114 | j = i; |
112 | else if ((ts->constindex >= 0) ? /* is a string? */ | 115 | else if ((ts->constindex >= 0) ? /* is a string? */ |
113 | (tag == LUA_T_STRING && (strcmp(buff, ts->str) == 0)) : | 116 | (tag == LUA_T_STRING && (strcmp(buff, ts->str) == 0)) : |
114 | ((tag == ts->u.d.tag || tag == LUA_ANYTAG) && buff == ts->u.d.v)) | 117 | ((tag == ts->u.d.tag || tag == LUA_ANYTAG) && buff == ts->u.d.v)) |
115 | return ts; | 118 | return ts; |
119 | if (++i == size) i=0; | ||
116 | } | 120 | } |
117 | /* not found */ | 121 | /* not found */ |
118 | if (j != -1) /* is there an EMPTY space? */ | 122 | if (j != -1) /* is there an EMPTY space? */ |