From: Anthony Liguori Date: Wed, 1 Jun 2011 17:14:51 +0000 (-0500) Subject: json-streamer: allow recovery after bad input X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=55f8301f7665eeef6d454cf4843c3f67b067f357;p=qemu.git json-streamer: allow recovery after bad input Once we detect a malformed message, make sure to reset our state. Signed-off-by: Michael Roth Signed-off-by: Anthony Liguori --- diff --git a/json-streamer.c b/json-streamer.c index f7e7a68d40..549e9b7f1e 100644 --- a/json-streamer.c +++ b/json-streamer.c @@ -51,8 +51,12 @@ static void json_message_process_token(JSONLexer *lexer, QString *token, JSONTok qlist_append(parser->tokens, dict); - if (parser->brace_count == 0 && - parser->bracket_count == 0) { + if (parser->brace_count < 0 || + parser->bracket_count < 0 || + (parser->brace_count == 0 && + parser->bracket_count == 0)) { + parser->brace_count = 0; + parser->bracket_count = 0; parser->emit(parser, parser->tokens); QDECREF(parser->tokens); parser->tokens = qlist_new();