summaryrefslogtreecommitdiff
path: root/src/upb_table.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/upb_table.c')
-rw-r--r--src/upb_table.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/upb_table.c b/src/upb_table.c
index 6fd2c20..b91776c 100644
--- a/src/upb_table.c
+++ b/src/upb_table.c
@@ -232,7 +232,7 @@ void *upb_strtable_next(upb_strtable *t, upb_strtable_entry *cur) {
do {
cur = (void*)((char*)cur + t->t.entry_size);
if(cur == end) return NULL;
- } while(upb_string_isnull(cur->key));
+ } while(cur->key == NULL);
return cur;
}
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback