summaryrefslogtreecommitdiff
path: root/src/upb_stream_vtbl.h
diff options
context:
space:
mode:
authorJoshua Haberman <joshua@reverberate.org>2011-02-13 17:27:32 -0800
committerJoshua Haberman <joshua@reverberate.org>2011-02-13 17:27:32 -0800
commit4dce5ab709f2fcad836a562f3902f2654fc584c4 (patch)
tree1b7f21efdc2f4bd3fef801722557e84d01fd525e /src/upb_stream_vtbl.h
parentddb74551f4faa1e2583b9ece0f2d5a6d6c0dc704 (diff)
Fix upbc and descriptorgen, and update descriptor.
Diffstat (limited to 'src/upb_stream_vtbl.h')
-rw-r--r--src/upb_stream_vtbl.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/upb_stream_vtbl.h b/src/upb_stream_vtbl.h
index e1f9cb8..10ee917 100644
--- a/src/upb_stream_vtbl.h
+++ b/src/upb_stream_vtbl.h
@@ -268,6 +268,7 @@ INLINE upb_flow_t upb_dispatch_endsubmsg(upb_dispatcher *d) {
upb_flow_t ret;
if (--d->top->depth == 0) {
ret = d->top->handlers.set->endmsg(d->top->handlers.closure);
+ //assert(ret != UPB_BREAK);
if (ret != UPB_CONTINUE) return ret;
--d->top;
assert(d->top >= d->stack);
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback