Update liblex and libds.
This commit is contained in:
2
external/libds
vendored
2
external/libds
vendored
Submodule external/libds updated: 320c747c2d...aae676c70c
2
external/liblex
vendored
2
external/liblex
vendored
Submodule external/liblex updated: 27db224a79...ff819aabab
@@ -10,7 +10,7 @@ void libab_table_init(libab_table* table) {
|
|||||||
libab_table_entry* libab_table_search_filter(libab_table* table, const char* string, void* data, compare_func compare) {
|
libab_table_entry* libab_table_search_filter(libab_table* table, const char* string, void* data, compare_func compare) {
|
||||||
void* to_return = NULL;
|
void* to_return = NULL;
|
||||||
do {
|
do {
|
||||||
to_return = ht_get_filter(&table->table, string, data, compare);
|
to_return = ht_find(&table->table, string, data, compare);
|
||||||
table = table->parent;
|
table = table->parent;
|
||||||
} while(table && to_return == NULL);
|
} while(table && to_return == NULL);
|
||||||
return to_return;
|
return to_return;
|
||||||
|
|||||||
Reference in New Issue
Block a user