From: Luiz Capitulino Date: Mon, 17 May 2010 20:59:00 +0000 (-0300) Subject: json-lexer: Drop 'buf' X-Git-Tag: TizenStudio_2.0_p2.3~4560^2~5 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=baf33be287e8fb818b259277ec9d1c9f81faf2bc;p=sdk%2Femulator%2Fqemu.git json-lexer: Drop 'buf' QString supports adding a single char, 'buf' is unneeded. Signed-off-by: Luiz Capitulino --- diff --git a/json-lexer.c b/json-lexer.c index 5cc7e6c..1d9b81f 100644 --- a/json-lexer.c +++ b/json-lexer.c @@ -284,8 +284,6 @@ void json_lexer_init(JSONLexer *lexer, JSONLexerEmitter func) static int json_lexer_feed_char(JSONLexer *lexer, char ch) { - char buf[2]; - lexer->x++; if (ch == '\n') { lexer->x = 0; @@ -313,10 +311,7 @@ static int json_lexer_feed_char(JSONLexer *lexer, char ch) break; } - buf[0] = ch; - buf[1] = 0; - - qstring_append(lexer->token, buf); + qstring_append_chr(lexer->token, ch); return 0; }