1
0
mirror of https://github.com/gryf/wmaker.git synced 2026-01-06 13:54:12 +01:00

fixed hashtable crash bug with WMStringHashCallbacks

This commit is contained in:
kojima
1999-09-17 22:10:28 +00:00
parent d565c36ef9
commit 0e263f7394
3 changed files with 144 additions and 6 deletions

View File

@@ -175,7 +175,7 @@ WMFreeHashTable(WMHashTable *table)
item = table->table[i];
while (item) {
tmp = item->next;
RELKEY(table, item);
RELKEY(table, item->key);
free(item);
item = tmp;
}