This commit is contained in:
waldemar%netscape.com 2000-02-02 08:46:36 +00:00
Родитель cc936727dd
Коммит 969ef01100
2 изменённых файлов: 6 добавлений и 16 удалений

Просмотреть файл

@ -212,15 +212,10 @@ namespace JavaScript {
GenericHashEntry **bp = ht.buckets + h;
Entry *e;
while ((e = static_cast<Entry *>(*bp)) != 0) {
if (e->keyHash == kh && e->data == key) {
entry = e;
backpointer = bp;
return;
}
while ((e = static_cast<Entry *>(*bp)) != 0 && !(e->keyHash == kh && e->data == key))
bp = &e->next;
}
entry = 0;
entry = e;
backpointer = bp;
}

Просмотреть файл

@ -212,15 +212,10 @@ namespace JavaScript {
GenericHashEntry **bp = ht.buckets + h;
Entry *e;
while ((e = static_cast<Entry *>(*bp)) != 0) {
if (e->keyHash == kh && e->data == key) {
entry = e;
backpointer = bp;
return;
}
while ((e = static_cast<Entry *>(*bp)) != 0 && !(e->keyHash == kh && e->data == key))
bp = &e->next;
}
entry = 0;
entry = e;
backpointer = bp;
}