summary refs log tree commit diff stats
path: root/json-streamer.c
diff options
context:
space:
mode:
authorAnthony Liguori <aliguori@us.ibm.com>2011-06-01 12:14:54 -0500
committerAnthony Liguori <aliguori@us.ibm.com>2011-06-07 13:52:11 -0500
commiteca7db46ff8f24a70f4040af3e941dc19fd33ebe (patch)
tree94f613c435de623c01a5944b79f170110e7566f1 /json-streamer.c
parent29c75ddd87ff7904005da08ff1056395261d90f1 (diff)
downloadfocaccia-qemu-eca7db46ff8f24a70f4040af3e941dc19fd33ebe.tar.gz
focaccia-qemu-eca7db46ff8f24a70f4040af3e941dc19fd33ebe.zip
json-streamer: make sure to reset token_size after emitting a token list
Signed-off-by: Michael Roth <mdroth@linux.vnet.ibm.com>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'json-streamer.c')
-rw-r--r--json-streamer.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/json-streamer.c b/json-streamer.c
index 6b9af63fb2..a6cb28f665 100644
--- a/json-streamer.c
+++ b/json-streamer.c
@@ -65,6 +65,7 @@ static void json_message_process_token(JSONLexer *lexer, QString *token, JSONTok
         parser->emit(parser, parser->tokens);
         QDECREF(parser->tokens);
         parser->tokens = qlist_new();
+        parser->token_size = 0;
     } else if (parser->token_size > MAX_TOKEN_SIZE ||
                parser->bracket_count > MAX_NESTING ||
                parser->brace_count > MAX_NESTING) {
@@ -76,6 +77,7 @@ static void json_message_process_token(JSONLexer *lexer, QString *token, JSONTok
         parser->emit(parser, parser->tokens);
         QDECREF(parser->tokens);
         parser->tokens = qlist_new();
+        parser->token_size = 0;
     }
 }