Ignore:
Timestamp:
Nov 4, 2007, 12:54:56 AM (18 years ago)
Author:
Darin Adler
Message:
  • pcre/pcre_exec.c: (match): Try to fix the Windows build by removing unreachable code.
File:
1 edited

Legend:

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

    r27420 r27421  
    755755    else
    756756      {
    757         {
    758         if (frame->eptr < md->end_subject - 1 ||
    759            (frame->eptr == md->end_subject - 1 && !IS_NEWLINE(*frame->eptr)))
    760           RRETURN(MATCH_NOMATCH);
    761         frame->ecode++;
    762         break;
    763         }
    764       }
    765     if (frame->eptr < md->end_subject) RRETURN(MATCH_NOMATCH);
    766     frame->ecode++;
     757      if (frame->eptr < md->end_subject - 1 ||
     758         (frame->eptr == md->end_subject - 1 && !IS_NEWLINE(*frame->eptr)))
     759        RRETURN(MATCH_NOMATCH);
     760      frame->ecode++;
     761      break;
     762      }
    767763    break;
    768764
Note: See TracChangeset for help on using the changeset viewer.