summaryrefslogtreecommitdiff
path: root/pcre_exec.c
Commit message (Expand)AuthorAgeFilesLines
* Fix a few small bugs and typos and update docs for a final release.ph102021-06-141-2/+2
* Fix \C backtracking in UTF-8 issue for repeated character classes, which were ph102018-02-201-2/+2
* Fix out-of-bounds read for partial matching of /./ against an empty stringph102018-01-291-2/+2
* Cast to avoid compiler warning on 32-bit systems.ph102017-02-201-1/+1
* Fix overflow when ovector has size 1.ph102015-06-091-1/+2
* Fix other cases of backtracking crashes after \C in UTF mode.ph102015-04-081-5/+5
* Fix backtracking bug for \C\X* in UTF mode.ph102015-04-081-3/+8
* Fix bugs caused by (?!) as a condition (which is converted to OP_FAIL).ph102015-03-241-0/+1
* Fix bug that did not allow zero case for (a)*+ when ovector was too small to ph102015-02-111-76/+64
* Fix memory leak for subroutine call with more than 10 captured groups to be ph102015-02-061-0/+4
* Fix zero-repeat assertion condition bug.ph102014-11-191-2/+5
* Fix bug when there are unset groups prior to (*ACCEPT) within a capturing ph102014-11-051-1/+12
* Files tidied for 8.36-RC1.ph102014-09-151-5/+5
* Fix empty-matching possessive zero-repeat groups bug.ph102014-05-271-16/+27
* Casts and type changes for compiler warnings.ph102014-05-211-1/+1
* Tidy code by merging two identical branches.ph102014-04-211-43/+14
* Preparations for next release.ph102014-03-041-2/+2
* Revert RAWUCHAR macros, renaming them as UCHAR21 and adding an explanatory ph102014-01-021-36/+36
* Get rid of confusing RAWUCHAR set of macros.ph102013-12-311-35/+35
* Get rid of some unitialized variable compiler warnings.ph102013-12-241-5/+11
* A new flag is set, when property checks are present in an XCLASS.zherczeg2013-12-221-12/+2
* Final file tidies for 8.34.ph102013-12-151-3/+3
* Fix internal error for XCLASS in 16/32-bit non-UCP versions with heap ph102013-12-061-9/+8
* Source tidies for 8.34-RC1.ph102013-11-191-3/+3
* Fix \K bug in possessively repeated groups.ph102013-11-111-0/+3
* More auto-possessification additions, using possessive class repeats. These are ph102013-10-141-4/+25
* Add U+0085 and U+180E to what \s matches in UCP mode, to match Perl.ph102013-10-121-60/+92
* Refactor named group handling for conditional tests.ph102013-10-061-171/+87
* Add VT to the set of characters recognized as white space.ph102013-10-051-56/+16
* Make back references to duplicated named subpatterns more like Perl.ph102013-09-061-10/+36
* Fix backup bugs with \X repeat matches.ph102013-07-261-8/+28
* Get rid of some "statement not reached" and a "possibly uninitialized" compiler ph102013-07-021-16/+8
* Fix spelling mistakes in comments.ph102013-05-101-1/+1
* Source tidies (trails spaces, html updates) for 8.33-RC1.ph102013-05-011-47/+47
* Improved support for match_limit in JIT.zherczeg2013-04-281-24/+0
* Code (but not yet documentation) for *LIMIT_MATCH and *LIMIT_RECURSION.ph102013-04-241-0/+35
* Remove commented code that was accidentally left in.ph102013-04-231-1/+0
* Use tail recursion in maximizing character and character type repetitions, to ph102013-04-221-42/+52
* Further changes to backtracking verbs in assertions.ph102013-03-271-20/+51
* Fix COMMIT in recursion; document backtracking verbs in assertions and ph102013-03-221-4/+8
* Code changes for simpler backtracking handling (docs to follow).ph102013-03-191-21/+46
* Change backtracking behaviour to "first verb encountered".ph102013-03-151-16/+5
* Fix the case where there are two or more SKIPs that may have to be ignored.ph102013-03-081-9/+15
* Fix *SKIP infinite loop.ph102013-03-081-3/+3
* Confine PRUNE and SKIP to recursive subpattern calls, like COMMIT.ph102013-03-061-35/+40
* Fix missing callout in alternative of conditional group when auto callout is ph102013-03-031-0/+1
* Add \p{Xuc} to match characters identifiable by Universal Character Names.ph102013-02-271-2/+62
* Change some pcre_uchar variables to pcre_uint32 in pcre_exec.c, for better ph102013-02-221-12/+7
* Pass back the bumpalong value for partial matches.ph102013-02-201-2/+9
* Fix various save/revert cases for capture_last in recursion and also don't ph102013-02-131-16/+40