Fix correction of parsiong of multiple variables: parse past the comma

This commit is contained in:
Wolfgang (Blub) Bumiller 2012-08-20 18:10:06 +02:00
parent 99bab76006
commit 198e35a823

View file

@ -2108,6 +2108,10 @@ nextvar:
if (parser->tok == ',') {
/* another var */
if (!parser_next(parser)) {
ast_delete(typevar);
return false;
}
continue;
}