Age | Commit message (Expand) | Author | Files | Lines |
2017-10-21 | fix regression in glob with literal . or .. path component | Rich Felker | 1 | -3/+5 |
2017-09-06 | fix glob descent into . and .. with GLOB_PERIOD | Rich Felker | 1 | -0/+4 |
2017-06-08 | fix glob failure to match plain "/" to root directory | Rich Felker | 1 | -1/+1 |
2017-03-21 | regex: fix newline matching with negated brackets | Julien Ramseier | 1 | -0/+14 |
2017-03-14 | fix free of uninitialized buffer pointer on error in regexec | Rich Felker | 1 | -3/+3 |
2017-01-02 | make globfree safe after failed glob from over-length argument | Rich Felker | 1 | -2/+2 |
2016-12-16 | handle ^ and $ in BRE subexpression start and end as anchors | Szabolcs Nagy | 1 | -9/+12 |
2016-10-06 | fix regexec with haystack strings longer than INT_MAX | Rich Felker | 1 | -26/+28 |
2016-10-06 | fix missing integer overflow checks in regexec buffer size computations | Rich Felker | 1 | -5/+18 |
2016-05-22 | fix the use of uninitialized value in regcomp | Szabolcs Nagy | 1 | -0/+2 |
2016-03-02 | fix ^* at the start of a complete BRE | Szabolcs Nagy | 1 | -0/+4 |
2016-03-02 | fix * at the start of a BRE subexpression | Szabolcs Nagy | 1 | -4/+0 |
2016-01-31 | regex: increase the stack tre uses for tnfa creation | Szabolcs Nagy | 1 | -1/+1 |
2016-01-30 | regex: simplify the {,} repetition parsing logic | Szabolcs Nagy | 1 | -20/+19 |
2016-01-30 | regex: treat \+, \? as repetitions in BRE | Szabolcs Nagy | 1 | -1/+5 |
2016-01-30 | regex: rewrite the repetition parsing code | Szabolcs Nagy | 1 | -30/+29 |
2016-01-30 | regex: treat \| in BRE as alternation | Szabolcs Nagy | 1 | -2/+17 |
2016-01-30 | regex: reject repetitions in some cases with REG_BADRPT | Szabolcs Nagy | 1 | -3/+12 |
2016-01-30 | regex: clean up position accounting for literal nodes | Szabolcs Nagy | 1 | -4/+2 |
2015-09-24 | regcomp: propagate allocation failures | Szabolcs Nagy | 1 | -1/+2 |
2015-06-16 | byte-based C locale, phase 1: multibyte character handling functions | Rich Felker | 1 | -1/+2 |
2015-03-27 | regex: fix character class repetitions | Szabolcs Nagy | 1 | -0/+5 |
2015-03-23 | do not treat \0 as a backref in BRE | Szabolcs Nagy | 1 | -1/+1 |
2015-03-20 | suppress backref processing in ERE regcomp | Rich Felker | 1 | -1/+1 |
2015-03-20 | fix memory-corruption in regcomp with backslash followed by high byte | Rich Felker | 1 | -1/+1 |
2014-12-17 | implement FNM_CASEFOLD extension to fnmatch function | Nagy Szabolcs | 1 | -11/+25 |
2014-09-13 | rewrite the regex pattern parser in regcomp | Szabolcs Nagy | 1 | -1081/+634 |
2014-09-05 | fix memory leak in regexec when input contains illegal sequence | Szabolcs Nagy | 1 | -5/+6 |
2014-07-26 | add support for LC_TIME and LC_MESSAGES translations | Rich Felker | 1 | -0/+2 |
2014-07-17 | fix crash in regexec for nonzero nmatch argument with REG_NOSUB | Rich Felker | 1 | -0/+1 |
2013-12-12 | include cleanups: remove unused headers and add feature test macros | Szabolcs Nagy | 2 | -3/+0 |
2013-12-02 | implement FNM_LEADING_DIR extension flag in fnmatch | Rich Felker | 1 | -2/+9 |
2013-12-01 | fix fnmatch corner cases related to escaping | Rich Felker | 1 | -4/+4 |
2013-12-01 | fix the end of string matching in fnmatch with FNM_PATHNAME | Szabolcs Nagy | 1 | -2/+2 |
2013-10-07 | fix allocation sizes in regcomp | Szabolcs Nagy | 1 | -4/+4 |
2013-02-01 | revert regex "cleanup" that seems unjustified and may break backtracking | Rich Felker | 1 | -0/+3 |
2013-01-15 | remove unused "params" related code from regex | Szabolcs Nagy | 2 | -21/+11 |
2013-01-14 | regex: remove an unused local variable from regexec | Szabolcs Nagy | 1 | -3/+0 |
2012-09-06 | use restrict everywhere it's required by c99 and/or posix 2008 | Rich Felker | 4 | -5/+5 |
2012-05-25 | fix regex on arm | Rich Felker | 1 | -1/+1 |
2012-05-13 | remove some no-op end of string tests from regex parser | Rich Felker | 1 | -4/+0 |
2012-05-13 | another BRE fix: in ^*, * is literal | Rich Felker | 1 | -0/+2 |
2012-05-07 | fix error checking for \ at end of regex (this was broken previously) | Rich Felker | 1 | -1/+1 |
2012-05-07 | fix copy and paste error in regex code causing mishandling of \) in BRE | Rich Felker | 1 | -1/+1 |
2012-05-07 | fix regex breakage in last commit (failure to handle empty regex, etc.) | Rich Felker | 1 | -4/+1 |
2012-05-07 | fix ugly bugs in TRE regex parser | Rich Felker | 1 | -60/+31 |
2012-04-28 | new fnmatch implementation | Rich Felker | 1 | -131/+273 |
2012-04-26 | update fnmatch to POSIX 2008 semantics | Rich Felker | 1 | -4/+11 |
2012-04-14 | fix signedness error handling invalid multibyte sequences in regexec | Rich Felker | 1 | -2/+2 |
2012-04-13 | remove invalid code from TRE | Rich Felker | 1 | -14/+0 |