Fixed dead assignment in 'parser.y' reported by 'clang-analyzer'

This commit is contained in:
Jose Narvaez
2014-06-13 12:11:23 +01:00
parent a250050077
commit 1a8e0ba4e8
+1 -1
View File
@@ -4373,7 +4373,7 @@ parser_yylex(parser_state *p)
p->lstate = EXPR_VALUE;
return '?';
}
token_column = newtok(p);
newtok(p);
/* need support UTF-8 if configured */
if ((isalnum(c) || c == '_')) {
int c2 = nextc(p);