summaryrefslogtreecommitdiff
path: root/core/upb_table.c
diff options
context:
space:
mode:
authorJoshua Haberman <joshua@reverberate.org>2010-07-10 18:11:24 -0700
committerJoshua Haberman <joshua@reverberate.org>2010-07-10 18:11:24 -0700
commitdb6c7387bc1df49deac41155a173e33017a75ed8 (patch)
tree4ea4b29da78b4dfb0515aff260e86120b2036e6b /core/upb_table.c
parent67b16cbe5c55d00d7e576cdf479392f3a0e927a5 (diff)
Incremental progress towards getting upb_def to bootstrap.
Diffstat (limited to 'core/upb_table.c')
-rw-r--r--core/upb_table.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/upb_table.c b/core/upb_table.c
index b91776c..b860204 100644
--- a/core/upb_table.c
+++ b/core/upb_table.c
@@ -179,7 +179,7 @@ static void strinsert(upb_strtable *t, upb_strtable_entry *e)
memcpy(strent(t, empty_bucket), table_e, t->t.entry_size); /* copies next */
upb_strtable_entry *evictee_e = strent(t, evictee_bucket);
while(1) {
- assert(!upb_string_isnull(evictee_e->key));
+ assert(evictee_e->key);
assert(evictee_e->next != UPB_END_OF_CHAIN);
if(evictee_e->next == bucket) {
evictee_e->next = empty_bucket;
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback