Ignore:
Timestamp:
Apr 20, 2007, 3:50:45 PM (18 years ago)
Author:
mjs
Message:

Not reviewed, build fix.

  • fix build problem with last change - -O3 complains more about uninitialized variables


  • pcre/pcre_compile.c: (compile_branch): (pcre_compile2):
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/pcre/pcre_compile.c

    r18526 r20977  
    33533353      else if (-c == ESC_P || -c == ESC_p)
    33543354        {
    3355         BOOL negated;
     3355        BOOL negated = 0;
    33563356        int value = get_ucp(&ptr, patternEnd, &negated, errorcodeptr);
    33573357        previous = code;
     
    40514051while (++ptr < patternEnd)
    40524052  {
    4053   int min, max;
     4053  int min = 0, max = 0;
    40544054  int class_optcount;
    40554055  int bracket_length;
Note: See TracChangeset for help on using the changeset viewer.