git-svn-id: https://svn.webkit.org/repository/webkit/trunk@28185
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
+2007-11-28 Mark Rowe <mrowe@apple.com>
+
+ Gtk build fix. Rubber-stamped by Eric.
+
+ * pcre/pcre_exec.cpp:
+ (match): Add braces around the body of the case statement to prevent
+ wanings about jumps across the initialization of a variable.
+
2007-11-29 Eric Seidel <eric@webkit.org>
Reviewed by Mark Rowe.
NEXT_OPCODE;
BEGIN_OPCODE(NOT_DIGIT):
+ {
if (stack.currentFrame->args.subjectPtr >= md.end_subject)
RRETURN_NO_MATCH;
int c = getCharAndAdvance(stack.currentFrame->args.subjectPtr);
RRETURN_NO_MATCH;
stack.currentFrame->args.instructionPtr++;
NEXT_OPCODE;
-
+ }
BEGIN_OPCODE(DIGIT):
{
if (stack.currentFrame->args.subjectPtr >= md.end_subject)