mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-09 10:34:58 -06:00
json-lexer: Drop 'buf'
QString supports adding a single char, 'buf' is unneeded. Signed-off-by: Luiz Capitulino <lcapitulino@redhat.com>
This commit is contained in:
parent
d22b0bd7fc
commit
ecb50f5fef
1 changed files with 1 additions and 6 deletions
|
@ -284,8 +284,6 @@ void json_lexer_init(JSONLexer *lexer, JSONLexerEmitter func)
|
||||||
|
|
||||||
static int json_lexer_feed_char(JSONLexer *lexer, char ch)
|
static int json_lexer_feed_char(JSONLexer *lexer, char ch)
|
||||||
{
|
{
|
||||||
char buf[2];
|
|
||||||
|
|
||||||
lexer->x++;
|
lexer->x++;
|
||||||
if (ch == '\n') {
|
if (ch == '\n') {
|
||||||
lexer->x = 0;
|
lexer->x = 0;
|
||||||
|
@ -313,10 +311,7 @@ static int json_lexer_feed_char(JSONLexer *lexer, char ch)
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
buf[0] = ch;
|
qstring_append_chr(lexer->token, ch);
|
||||||
buf[1] = 0;
|
|
||||||
|
|
||||||
qstring_append(lexer->token, buf);
|
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue