Commit 6eed5eb2 by alokp@chromium.org

ret = yyparse(...) is dropped in PaParseStrings. Submitted by timeless.

BUG=16 Review URL: http://codereview.appspot.com/1868056 git-svn-id: https://angleproject.googlecode.com/svn/trunk@377 736b8ea6-26fd-11df-bfd4-992fa37f6226
parent b2dfd8ea
...@@ -309,7 +309,7 @@ int PaParseStrings(char* argv[], int strLen[], int argc, TParseContext& parseCon ...@@ -309,7 +309,7 @@ int PaParseStrings(char* argv[], int strLen[], int argc, TParseContext& parseCon
if (*cpp->PaStrLen >= 0) { if (*cpp->PaStrLen >= 0) {
int ret = yyparse((void*)(&parseContextLocal)); int ret = yyparse((void*)(&parseContextLocal));
if (cpp->CompileError == 1 || parseContextLocal.recoveredFromError || parseContextLocal.numErrors > 0) if (ret || cpp->CompileError == 1 || parseContextLocal.recoveredFromError || parseContextLocal.numErrors > 0)
return 1; return 1;
else else
return 0; return 0;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment