Changeset 1151
- Timestamp:
- 11/16/07 10:07:07 (10 months ago)
- Files:
-
- 1.8.3/branches/devel/hdrs/mypcre.h (modified) (2 diffs)
- 1.8.3/branches/devel/src/funlist.c (modified) (1 diff)
- 1.8.3/branches/devel/src/pcre.c (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
1.8.3/branches/devel/hdrs/mypcre.h
r1145 r1151 47 47 struct pcre_extra; 48 48 void set_match_limit(struct pcre_extra *); 49 struct pcre_extra * default_match_limit(void);49 struct pcre_extra *default_match_limit(void); 50 50 51 51 #ifdef HAVE_PCRE … … 214 214 #endif /* !HAVE_PCRE */ 215 215 #endif /* End of pcre.h */ 216 1.8.3/branches/devel/src/funlist.c
r1145 r1151 3134 3134 reharg.study = default_match_limit(); 3135 3135 } 3136 3136 3137 3137 reharg.buff = buff; 3138 3138 reharg.bp = bp; 1.8.3/branches/devel/src/pcre.c
r1145 r1151 9225 9225 /* End of pcre_exec.c */ 9226 9226 9227 #endif /* !HAVE_PCRE */9227 #endif /* !HAVE_PCRE */ 9228 9228 9229 9229 /** Return a default pcre_extra pointer pointing to a static region … … 9238 9238 return &ex; 9239 9239 } 9240 9240 9241 9241 9242 9242 /** Set a low match-limit setting in an existing pcre_extra struct. */ … … 9249 9249 ex->match_limit = PENN_MATCH_LIMIT; 9250 9250 } 9251
