summaryrefslogtreecommitdiff
path: root/ext/ereg/ereg.c
Commit message (Collapse)AuthorAgeFilesLines
* Eliminate a TSRMLS_FETCH() call in case of an error in one of the ereg functionsKalle Sommer Nielsen2010-09-231-9/+7
|
* Allow ereg to be built as shared on WindowsKalle Sommer Nielsen2010-05-241-23/+26
| | | | | ## I know that we may remove ereg in trunk, but since the core doesn't depend on ## ereg, then I don't see any reason not to allow this
* Remove a couple TSRMLS_FETCH() calls around ext/main/sapiKalle Sommer Nielsen2010-04-131-5/+4
|
* sed -i "s#1997-2009#1997-2010#g" **/*.c **/*.h **/*.phpSebastian Bergmann2010-01-031-1/+1
|
* MFH: Fix bug #48416 - Force a cache size for ereg to stop it getting out of ↵Scott MacVicar2009-05-281-1/+50
| | | | control. Lazy LRU here.
* Simplify parameter parsingIlia Alshanetsky2009-01-081-8/+3
|
* MFH: Bump copyright year, 3 of 3.Sebastian Bergmann2008-12-311-1/+1
|
* - Deprecate eregFelipe Pena2008-11-181-25/+7
|
* - MFH: Added 'static' into ZEND_BEGIN_ARG_INFO_EX macroFelipe Pena2008-11-171-7/+0
|
* - Revert ZEND_BEGIN_ARG_INFO changeFelipe Pena2008-11-021-0/+7
|
* - MFH: Added 'static' into ZEND_BEGIN_ARG_INFO_EX macroFelipe Pena2008-10-241-7/+0
|
* - New parameter parsing APIFelipe Pena2008-06-211-50/+49
|
* - Better error messageFelipe Pena2008-04-201-5/+1
|
* MFB: Fixed bug #44678 (spliti error message includes wrong function name)Felipe Pena2008-04-091-1/+7
|
* MFH: Bump copyright year, 2 of 2.Sebastian Bergmann2007-12-311-1/+1
|
* MFH:- Moved the old regex functions to own extension: eregJani Taskinen2007-10-051-0/+748
|
* - Remove ereg/ from PHP_5_2 branch. (not yet wanted here :)Jani Taskinen2007-07-151-668/+0
|
* MFH: Bump year.Sebastian Bergmann2007-01-011-1/+1
|
* MFHAntony Dovgal2006-12-281-1/+1
|
* - Warning fixes by StephMarcus Boerger2006-02-261-1/+1
|
* bump year and license versionfoobar2006-01-011-3/+3
|
* MFH: Nuke php3 legacyfoobar2005-12-051-2/+2
|
* - Bumber up yearfoobar2005-08-031-1/+1
|
* MFB4_4: Fix compile problem with --regex=system on some systemsfoobar2005-07-181-1/+15
|
* Do a cache flush if we detect possible cache corruption (same as forAndrei Zmievski2005-05-261-12/+29
| | | | | PCRE).
* - Nuke empty_string. It is a reminanent from the time where RETURN_FALSE()Andi Gutmans2004-07-191-4/+4
| | | | | | | | | | | | | | | used to return "" and not bool(false). It's not worth keeping it because STR_FREE() and zval_dtor() always have to check for it and it slows down the general case. In addition, it seems that empty_string has been abused quite a lot, and was used not only for setting zval's but generally in PHP code instead of "", which wasn't the intention. Last but not least, nuking empty_string should improve stability as I doubt every place correctly checked if they are not mistakenly erealloc()'ing it or calling efree() on it. NOTE: Some code is probably broken. Each extension maintainer should check and see that my changes are OK. Also, I haven't had time to touch PECL yet. Will try and do it tomorrow.
* - A belated happy holidays and PHP 5Andi Gutmans2004-01-081-2/+2
|
* emalloc -> safe_emallocIlia Alshanetsky2003-08-111-6/+6
|
* updating license information in the headers.James Cox2003-06-101-3/+3
|
* Forgot to fix this partMoriyoshi Koizumi2003-02-241-1/+1
|
* Fixed a signed / unsigned issue.Moriyoshi Koizumi2003-02-241-1/+1
| | | | | | # imagine the case like "\\\xfe" where walk[1] takes a value that is greater # than 127 in integer...
* Style fixMoriyoshi Koizumi2003-02-241-7/+11
|
* Reverted because correct decision has not been made yet.Moriyoshi Koizumi2003-01-111-1/+1
|
* Reduced warnings in ZE2 buildMoriyoshi Koizumi2003-01-111-1/+1
|
* Reduced compiler warningsMoriyoshi Koizumi2003-01-101-1/+1
|
* Bump year.Sebastian Bergmann2002-12-311-1/+1
|
* Remove pointless checks for array_init() return values.Ilia Alshanetsky2002-12-051-4/+1
|
* -php_error -> php_error_docrefMarcus Boerger2002-12-051-22/+4
| | | | | -removed some cases where emalloc result was tested
* Fix bug #17570.Andrei Zmievski2002-09-251-13/+12
|
* Fixed bug #17957Ilia Alshanetsky2002-09-241-21/+16
|
* Fix a warningZeev Suraski2002-08-191-1/+1
|
* Applied fix for #17764.Andrei Zmievski2002-06-171-0/+2
| | | | | | @- Fixed a crash in ereg_replace() when backreference number was greater @ than the number of subpatterns. (oliver@billix.franken.de)
* fixed a problem that ereg_replace() couldn't match with line stand/end marker.Rui Hirokawa2002-05-041-1/+1
|
* - Revert that change. Added a warning about this.foobar2002-04-081-0/+4
|
* There's really no point in allowing using the system regex library.foobar2002-04-081-4/+0
|
* Small memory leak fix that does not matter much.Yasuo Ohgaki2002-03-111-0/+1
|
* Maintain headers.Sebastian Bergmann2002-02-281-1/+1
|
* Be more aggressive in making sure that substring matches are valid injim winstead2002-01-051-1/+3
| | | | | | | | ereg_replace before trying to use them. # i could have sworn i fixed this in php3. ereg() has similar logic, i # guess i just missed ereg_replace. fixing this lets # ext/standard/tests/reg/012.phpt pass on my debian/unstable box
* - Fix tiny leak.Markus Fischer2001-12-231-1/+1
|
* Fix a warningZeev Suraski2001-12-221-1/+2
|