From patchwork Wed May 19 21:15:28 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [1/6] json-lexer: Initialize 'x' and 'y' Date: Wed, 19 May 2010 11:15:28 -0000 From: Luiz Capitulino X-Patchwork-Id: 53025 Message-Id: <1274303733-3700-2-git-send-email-lcapitulino@redhat.com> To: aliguori@us.ibm.com Cc: qemu-devel@nongnu.org The 'lexer' variable is passed by the caller, it can contain anything (eg. garbage). Signed-off-by: Luiz Capitulino --- json-lexer.c | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/json-lexer.c b/json-lexer.c index 9d64920..0b145d1 100644 --- a/json-lexer.c +++ b/json-lexer.c @@ -275,6 +275,7 @@ void json_lexer_init(JSONLexer *lexer, JSONLexerEmitter func) lexer->emit = func; lexer->state = IN_START; lexer->token = qstring_new(); + lexer->x = lexer->y = 0; } static int json_lexer_feed_char(JSONLexer *lexer, char ch)