summaryrefslogtreecommitdiff
path: root/src/regex
AgeCommit message (Expand)AuthorLines
2016-12-16handle ^ and $ in BRE subexpression start and end as anchorsSzabolcs Nagy-9/+12
2016-10-06fix regexec with haystack strings longer than INT_MAXRich Felker-26/+28
2016-10-06fix missing integer overflow checks in regexec buffer size computationsRich Felker-5/+18
2016-05-22fix the use of uninitialized value in regcompSzabolcs Nagy-0/+2
2016-03-02fix ^* at the start of a complete BRESzabolcs Nagy-0/+4
2016-03-02fix * at the start of a BRE subexpressionSzabolcs Nagy-4/+0
2016-01-31regex: increase the stack tre uses for tnfa creationSzabolcs Nagy-1/+1
2016-01-30regex: simplify the {,} repetition parsing logicSzabolcs Nagy-20/+19
2016-01-30regex: treat \+, \? as repetitions in BRESzabolcs Nagy-1/+5
2016-01-30regex: rewrite the repetition parsing codeSzabolcs Nagy-30/+29
2016-01-30regex: treat \| in BRE as alternationSzabolcs Nagy-2/+17
2016-01-30regex: reject repetitions in some cases with REG_BADRPTSzabolcs Nagy-3/+12
2016-01-30regex: clean up position accounting for literal nodesSzabolcs Nagy-4/+2
2015-09-24regcomp: propagate allocation failuresSzabolcs Nagy-1/+2
2015-06-16byte-based C locale, phase 1: multibyte character handling functionsRich Felker-1/+2
2015-03-27regex: fix character class repetitionsSzabolcs Nagy-0/+5
2015-03-23do not treat \0 as a backref in BRESzabolcs Nagy-1/+1
2015-03-20suppress backref processing in ERE regcompRich Felker-1/+1
2015-03-20fix memory-corruption in regcomp with backslash followed by high byteRich Felker-1/+1
2014-12-17implement FNM_CASEFOLD extension to fnmatch functionNagy Szabolcs-11/+25
2014-09-13rewrite the regex pattern parser in regcompSzabolcs Nagy-1081/+634
2014-09-05fix memory leak in regexec when input contains illegal sequenceSzabolcs Nagy-5/+6
2014-07-26add support for LC_TIME and LC_MESSAGES translationsRich Felker-0/+2
2014-07-17fix crash in regexec for nonzero nmatch argument with REG_NOSUBRich Felker-0/+1
2013-12-12include cleanups: remove unused headers and add feature test macrosSzabolcs Nagy-3/+0
2013-12-02implement FNM_LEADING_DIR extension flag in fnmatchRich Felker-2/+9
2013-12-01fix fnmatch corner cases related to escapingRich Felker-4/+4
2013-12-01fix the end of string matching in fnmatch with FNM_PATHNAMESzabolcs Nagy-2/+2
2013-10-07fix allocation sizes in regcompSzabolcs Nagy-4/+4
2013-02-01revert regex "cleanup" that seems unjustified and may break backtrackingRich Felker-0/+3
2013-01-15remove unused "params" related code from regexSzabolcs Nagy-21/+11
2013-01-14regex: remove an unused local variable from regexecSzabolcs Nagy-3/+0
2012-09-06use restrict everywhere it's required by c99 and/or posix 2008Rich Felker-5/+5
2012-05-25fix regex on armRich Felker-1/+1
2012-05-13remove some no-op end of string tests from regex parserRich Felker-4/+0
2012-05-13another BRE fix: in ^*, * is literalRich Felker-0/+2
2012-05-07fix error checking for \ at end of regex (this was broken previously)Rich Felker-1/+1
2012-05-07fix copy and paste error in regex code causing mishandling of \) in BRERich Felker-1/+1
2012-05-07fix regex breakage in last commit (failure to handle empty regex, etc.)Rich Felker-4/+1
2012-05-07fix ugly bugs in TRE regex parserRich Felker-60/+31
2012-04-28new fnmatch implementationRich Felker-131/+273
2012-04-26update fnmatch to POSIX 2008 semanticsRich Felker-4/+11
2012-04-14fix signedness error handling invalid multibyte sequences in regexecRich Felker-2/+2
2012-04-13remove invalid code from TRERich Felker-14/+0
2012-04-13fix broken regerror (typo) and missing messageRich Felker-2/+2
2012-03-20upgrade to latest upstream TRE regex code (0.8.0)Rich Felker-1168/+1037
2012-01-23make glob mark symlinks-to-directories with the GLOB_MARK flagRich Felker-1/+1
2012-01-22support GLOB_PERIOD flag (GNU extension) to glob functionRich Felker-1/+2
2011-06-16duplicate re_nsub in LSB/glibc ABI compatible locationRich Felker-1/+1
2011-06-06fix handling of d_name in struct direntRich Felker-3/+2