Changeset 19917
- Timestamp:
- 02/28/07 14:26:19 (23 months ago)
- Location:
- S60/branches/3.1m/JavaScriptCore
- Files:
-
- 2 modified
-
ChangeLog (modified) (1 diff)
-
pcre/pcre.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
S60/branches/3.1m/JavaScriptCore/ChangeLog
r19430 r19917 1 vbradley, 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 1 8 vbradley, reviewed by Yongjun. 2 9 DESC: Fixed the stack size and pcre stack overflow ALAA-6XSF7U -
S60/branches/3.1m/JavaScriptCore/pcre/pcre.c
r19430 r19917 3688 3688 BOOL err; 3689 3689 3690 if ( matchcountMax >= 2 50)3690 if ( matchcountMax >= 225 ) 3691 3691 { 3692 3692 return FALSE; … … 3742 3742 int flags) 3743 3743 #else 3744 static BOOL 3744 3745 match(register const ichar *eptr, register const uschar *ecode, 3745 3746 int offset_top, match_data *md, unsigned long int ims, eptrblock *eptrb,