| Source path: hg/ re2/ parse.cc |
|
|
|
|
Change log
7007b2180a42
by Russ Cox <r...@swtch.com>
on Jul 21, 2011
Diff
re2: fix comparison bug in LookupCaseFold Missed a hard-coded reference to unicode_casefold when making the function more generic. That bug masked a bug in the use by ToLowerRune. Fixes issue 42 . R=r CC=re2-dev ...
| Go to: |
Older revisions
b33ecb9b4ee7
by Russ Cox <r...@swtch.com>
on Jun 21, 2011
Diff
export changes made at Google R=rsc CC=re2-dev http://codereview.appspot.com/4625055
967e77803d77
by Russ Cox <r...@swtch.com>
on Feb 1, 2011
Diff
re2: disallow a{100000,}
Was already disallowing a{100000}.
Trying to handle a{100000,} was not
intended.
...
64f066f1ddee
by Russ Cox <r...@swtch.com>
on Feb 1, 2011
Diff
Regexp::Parse: fix memory access past end of input Export from Google source tree. ...