summaryrefslogtreecommitdiff
path: root/src/upb_stream_vtbl.h
diff options
context:
space:
mode:
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