Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Whitespace fixes. | Ulrich Drepper | 2010-03-27 | 1 | -2/+2 | |
| | ||||||
* | Fix one more issue with the glob patch. | Ulrich Drepper | 2010-03-27 | 1 | -2/+2 | |
| | ||||||
* | Add test for last glob bug. | Ulrich Drepper | 2010-03-24 | 2 | -2/+47 | |
| | ||||||
* | Fix glob with empty pattern | Ulrich Drepper | 2010-03-24 | 2 | -42/+81 | |
| | ||||||
* | Update copyright year. | Ulrich Drepper | 2010-03-15 | 1 | -2/+2 | |
| | ||||||
* | regexec.c: avoid overflow in realloc buffer length computation | Paul Eggert | 2010-01-22 | 1 | -0/+4 | |
| | ||||||
* | regexec.c: avoid leaks on out-of-memory failure paths | Paul Eggert | 2010-01-22 | 1 | -4/+15 | |
| | ||||||
* | regexec.c: avoid overflow in computing sum of lengths | Paul Eggert | 2010-01-22 | 1 | -1/+1 | |
| | ||||||
* | re_search_internal: Avoid overflow in computing re_malloc buffer size | Paul Eggert | 2010-01-22 | 1 | -0/+7 | |
| | ||||||
* | prune_impossible_nodes: Avoid overflow in computing re_malloc buffer size | Paul Eggert | 2010-01-22 | 1 | -0/+5 | |
| | ||||||
* | regexec.c: avoid arithmetic overflow in buffer size calculation | Paul Eggert | 2010-01-22 | 1 | -0/+7 | |
| | ||||||
* | regexec.c: simplify re_search_2_stub | Paul Eggert | 2010-01-22 | 1 | -7/+4 | |
| | ||||||
* | Simplify test in re_string_skip_chars. | Ulrich Drepper | 2010-01-22 | 1 | -1/+1 | |
| | ||||||
* | regex_internal.c: don't assume WEOF fits in wchar_t | Ulrich Drepper | 2010-01-22 | 1 | -5/+7 | |
| | ||||||
* | regex_internal.c: remove useless variable and the code to set it. | Ulrich Drepper | 2010-01-22 | 1 | -3/+1 | |
| | ||||||
* | Extend overflow detection in re_dfa_add_node. | Ulrich Drepper | 2010-01-22 | 1 | -2/+5 | |
| | ||||||
* | regex: avoid internal re_realloc overflow | Ulrich Drepper | 2010-01-22 | 1 | -1/+8 | |
| | ||||||
* | One forgotten checkin from regex changes. | Ulrich Drepper | 2010-01-15 | 1 | -2/+2 | |
| | ||||||
* | Fix a few more cases of ignored return values in regex. | Ulrich Drepper | 2010-01-15 | 3 | -129/+145 | |
| | ||||||
* | regcomp.c: do not ignore memory allocation failure | Paul Eggert | 2010-01-14 | 1 | -55/+57 | |
| | ||||||
* | Relax conditions in unistd.h. | Ulrich Drepper | 2010-01-14 | 1 | -9/+9 | |
| | ||||||
* | Relax visibility of some more declaration. | Ulrich Drepper | 2010-01-14 | 1 | -2/+2 | |
| | ||||||
* | Declare getpagesize in _GNU_SOURCE mode again. | Ulrich Drepper | 2010-01-14 | 1 | -2/+2 | |
| | ||||||
* | Fix up sched.h for XPG7. | Ulrich Drepper | 2010-01-12 | 1 | -1/+9 | |
| | ||||||
* | Fix compile error with sys/wait.h. | Jakub Jelinek | 2010-01-12 | 1 | -1/+1 | |
| | ||||||
* | Fix handling symbols removed in XPG7. | Ulrich Drepper | 2010-01-11 | 1 | -6/+6 | |
| | ||||||
* | Fix up unistd.h for XPG7. | Ulrich Drepper | 2010-01-11 | 1 | -16/+23 | |
| | ||||||
* | Fix up sys/wait.h header for XPG7. | Ulrich Drepper | 2010-01-10 | 1 | -4/+4 | |
| | ||||||
* | Fix up sys/types.h for XPG7. | Ulrich Drepper | 2010-01-10 | 1 | -5/+6 | |
| | | | | Also fix a test. | |||||
* | Fix glob.h for XPG7. | Ulrich Drepper | 2010-01-10 | 1 | -2/+3 | |
| | ||||||
* | Add support for XPG7 testing. | Ulrich Drepper | 2010-01-09 | 1 | -103/+111 | |
| | | | | | The header conformance testing code needed extending for XPG7. This exposed a few bugs in the headers. There are more changes to come. | |||||
* | Add more warnings to exec functions. | Bruno Haible | 2009-12-09 | 1 | -8/+8 | |
| | ||||||
* | Whitespace fixes. | Ulrich Drepper | 2009-11-17 | 1 | -2/+2 | |
| | ||||||
* | Fix ranges with multibyte characters as endpoints. | Paolo Bonzini | 2009-11-17 | 3 | -2/+106 | |
| | | | | | | | | | | | | | | | | This is another bug in computing the fastmap. It was reported by a user of sed because it usually does not happen with !_LIBC. However, it is there in that case too. The bug is that whenever we have a range at the beginning of the regex, the regex must be tested on any possible multibyte character. The reason why _LIBC masks it, is that in general there is a collation symbol for each possible multibyte-character lead byte, so all the lead bytes are in general already part of the fastmap. The tests use cyrillic characters as an example. With _LIBC, they pass without the patch too, but you can make them fail by removing collation symbols handling. | |||||
* | Add missing stdio.h include. | Mike Frsyinger | 2009-11-14 | 1 | -0/+1 | |
| | ||||||
* | Handle -- on getconf command line. | Ulrich Drepper | 2009-09-09 | 1 | -34/+38 | |
| | ||||||
* | Handle POSIX2_LINE_MAX in getconf. | Ulrich Drepper | 2009-09-07 | 1 | -0/+1 | |
| | ||||||
* | Extend last test case. | Ulrich Drepper | 2009-08-23 | 1 | -1/+8 | |
| | ||||||
* | Add test case for last fixed regex bug. | Ulrich Drepper | 2009-08-23 | 2 | -0/+16 | |
| | ||||||
* | Recognize ill-formed { } expressions in regcomp. | Ulrich Drepper | 2009-08-23 | 1 | -1/+1 | |
| | ||||||
* | Also correct _POSIX2_* constants in case older standards are selected. | Ulrich Drepper | 2009-08-23 | 1 | -5/+19 | |
| | ||||||
* | Define _POSIX_VERSION correctly when older POSIX versions are selected. | Ulrich Drepper | 2009-08-23 | 1 | -1/+15 | |
| | ||||||
* | Avoid warnings in test cases. | Ulrich Drepper | 2009-07-23 | 3 | -0/+6 | |
| | | | | | | The posix/tst-rfc3484* test cases caused warnings in newer gccs because the unused but copied sin_zero part of sockaddr_in wasn't explicitly initialized. | |||||
* | Don't treat bug reporting message as a format string. | Andreas Schwab | 2009-06-16 | 1 | -2/+2 | |
| | ||||||
* | When iterating over CPU bitmask, don't try more than CPU_SETSIZE. | Ulrich Drepper | 2009-06-15 | 1 | -1/+2 | |
| | ||||||
* | Implement execvpe. | Ulrich Drepper | 2009-06-02 | 5 | -191/+235 | |
| | | | | | There is some existing practice in other OSes and it's trivial to implement giving the existing code. Fixes BZ #10221. | |||||
* | Fix typos and pretty printing in sys/wait.h. | Ulrich Drepper | 2009-05-16 | 1 | -13/+13 | |
| | ||||||
* | Remove redundant .gitignore files. | Andreas Schwab | 2009-05-16 | 1 | -6/+0 | |
| | ||||||
* | rename each .cvsignore file to .gitignore | Jim Meyering | 2009-05-15 | 1 | -0/+0 | |
| | ||||||
* | * posix/bits/posix1_lim.h: Cleanup namespace a bit. | Ulrich Drepper | 2009-04-26 | 1 | -4/+8 | |
| |