From 2efe6be99415deb781955590edfc2541131be4bb Mon Sep 17 00:00:00 2001 From: Josh Haberman Date: Wed, 15 Jul 2015 10:39:32 -0700 Subject: Clear JSON parser status in reset. --- upb/json/parser.c | 3 ++- upb/json/parser.rl | 1 + 2 files changed, 3 insertions(+), 1 deletion(-) (limited to 'upb') diff --git a/upb/json/parser.c b/upb/json/parser.c index 07132fa..f9771f9 100644 --- a/upb/json/parser.c +++ b/upb/json/parser.c @@ -1550,6 +1550,7 @@ static void json_parser_reset(upb_json_parser *p) { p->multipart_state = MULTIPART_INACTIVE; p->capture = NULL; p->accumulated = NULL; + upb_status_clear(&p->status); } @@ -1576,7 +1577,7 @@ upb_json_parser *upb_json_parser_create(upb_env *env, upb_sink *output) { p->top->m = upb_handlers_msgdef(output->handlers); /* If this fails, uncomment and increase the value in parser.h. */ - fprintf(stderr, "%zd\n", upb_env_bytesallocated(env) - size_before); + /* fprintf(stderr, "%zd\n", upb_env_bytesallocated(env) - size_before); */ assert(upb_env_bytesallocated(env) - size_before <= UPB_JSON_PARSER_SIZE); return p; } diff --git a/upb/json/parser.rl b/upb/json/parser.rl index 8896d7b..40b7724 100644 --- a/upb/json/parser.rl +++ b/upb/json/parser.rl @@ -1285,6 +1285,7 @@ static void json_parser_reset(upb_json_parser *p) { p->multipart_state = MULTIPART_INACTIVE; p->capture = NULL; p->accumulated = NULL; + upb_status_clear(&p->status); } -- cgit v1.2.3