Changeset 19917

Show
Ignore:
Timestamp:
02/28/07 14:26:19 (23 months ago)
Author:
brmorris
Message:

vbradley, reviewed by Yongjun.

DESC: ALAA-6XSF7U : Reduce stack overflow counter
http://bugs.webkit.org/show_bug.cgi?id=12928

Location:
S60/branches/3.1m/JavaScriptCore
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • S60/branches/3.1m/JavaScriptCore/ChangeLog

    r19430 r19917  
     1vbradley, reviewed by Yongjun. 
     2        DESC: ALAA-6XSF7U : Reduce stack overflow counter 
     3        http://bugs.webkit.org/show_bug.cgi?id=12928 
     4 
     5        * pcre/pcre.c: 
     6        (match): 
     7 
    18vbradley, reviewed by Yongjun. 
    29        DESC: Fixed the stack size and pcre stack overflow ALAA-6XSF7U 
  • S60/branches/3.1m/JavaScriptCore/pcre/pcre.c

    r19430 r19917  
    36883688    BOOL err; 
    36893689 
    3690     if ( matchcountMax >= 250 ) 
     3690    if ( matchcountMax >= 225 ) 
    36913691        { 
    36923692        return FALSE; 
     
    37423742  int flags) 
    37433743#else 
     3744static BOOL 
    37443745match(register const ichar *eptr, register const uschar *ecode, 
    37453746  int offset_top, match_data *md, unsigned long int ims, eptrblock *eptrb,