commit | 0f36ef09b12e7c39c05b7def4d7c7fc87987dec2 | [log] [tgz] |
---|---|---|
author | Jacek Caban <jacek@codeweavers.com> | Tue Dec 28 15:05:25 2010 +0100 |
committer | Alexandre Julliard <julliard@winehq.org> | Tue Dec 28 16:35:42 2010 +0100 |
tree | 1f533dd4515e246c165c6e7bcf30b6fa5bfca177 | |
parent | 5e469f4fff8890552513180178c5ad7d59546376 [diff] [blame] |
jscript: Ensure that the whole script is parsed.
diff --git a/dlls/jscript/lex.c b/dlls/jscript/lex.c index bfa3568..88fed07 100644 --- a/dlls/jscript/lex.c +++ b/dlls/jscript/lex.c
@@ -526,7 +526,7 @@ do { skip_spaces(ctx); if(ctx->ptr == ctx->end) - return 0; + return tEOF; }while(skip_comment(ctx) || skip_html_comment(ctx)); if(isalphaW(*ctx->ptr)) {