Chromium Code Reviews| Index: runtime/third_party/jscre/pcre_exec.cpp |
| =================================================================== |
| --- runtime/third_party/jscre/pcre_exec.cpp (revision 749) |
| +++ runtime/third_party/jscre/pcre_exec.cpp (working copy) |
| @@ -1151,7 +1151,8 @@ |
| stack.currentFrame->args.instructionPtr += stack.currentFrame->locals.length; |
| if (stack.currentFrame->locals.fc <= 0xFFFF) { |
| - int othercase = md.ignoreCase ? kjs_pcre_ucp_othercase(stack.currentFrame->locals.fc) : -1; |
| + int othercase; |
| + othercase = md.ignoreCase ? kjs_pcre_ucp_othercase(stack.currentFrame->locals.fc) : -1; |
|
Ivan Posva
2011/10/31 14:00:09
Not sure what you changed here. And why it makes c
Anton Muhin
2011/10/31 18:46:01
Clang complains:
<quotation>
/Users/antonm/Google
|
| for (int i = 1; i <= min; i++) { |
| if (*stack.currentFrame->args.subjectPtr != stack.currentFrame->locals.fc && *stack.currentFrame->args.subjectPtr != othercase) |