Age | Commit message (Collapse) | Author | |
---|---|---|---|
2010-08-09 | Avoid too much stack use in fnmatch. | Ulrich Drepper | |
2010-06-19 | Correct checking loop in group_member. | Ulrich Drepper | |
2010-06-14 | Fix a couple of __REDIRECT () __THROW occurrences | Jakub Jelinek | |
This patch fixes some cases which fail to parse with C++. | |||
2010-05-05 | Fix lookup of collation sequence value during regexp matching | Andreas Schwab | |
2010-04-09 | Fix tst-chmod not to write into srcdir. | Roland McGrath | |
2010-04-07 | Add tests for recent getopt changes. | Ulrich Drepper | |
2010-04-07 | getopt mishandles optstring of "+:" | Eric Blake | |
2010-04-07 | getopt mistakenly allows '-;' as short option | Eric Blake | |
2010-04-07 | Fix -W with optional parameters in getopt. | Eric Blake | |
According to the getopt documentation, if "W;" is part of optstring, then '-W foo' should behave like '--foo'. But if "foo" uses an optional_argument, this is not the case, since optarg is not NULL when using -W. | |||
2010-04-04 | Fix printing error messages in getopt. | Ulrich Drepper | |
2010-04-03 | Document problem with NATs in getaddrinfo. | Ulrich Drepper | |
2010-03-27 | Whitespace fixes. | Ulrich Drepper | |
2010-03-27 | Fix one more issue with the glob patch. | Ulrich Drepper | |
2010-03-24 | Add test for last glob bug. | Ulrich Drepper | |
2010-03-24 | Fix glob with empty pattern | Ulrich Drepper | |
2010-03-15 | Update copyright year. | Ulrich Drepper | |
2010-01-22 | regexec.c: avoid overflow in realloc buffer length computation | Paul Eggert | |
2010-01-22 | regexec.c: avoid leaks on out-of-memory failure paths | Paul Eggert | |
2010-01-22 | regexec.c: avoid overflow in computing sum of lengths | Paul Eggert | |
2010-01-22 | re_search_internal: Avoid overflow in computing re_malloc buffer size | Paul Eggert | |
2010-01-22 | prune_impossible_nodes: Avoid overflow in computing re_malloc buffer size | Paul Eggert | |
2010-01-22 | regexec.c: avoid arithmetic overflow in buffer size calculation | Paul Eggert | |
2010-01-22 | regexec.c: simplify re_search_2_stub | Paul Eggert | |
2010-01-22 | Simplify test in re_string_skip_chars. | Ulrich Drepper | |
2010-01-22 | regex_internal.c: don't assume WEOF fits in wchar_t | Ulrich Drepper | |
2010-01-22 | regex_internal.c: remove useless variable and the code to set it. | Ulrich Drepper | |
2010-01-22 | Extend overflow detection in re_dfa_add_node. | Ulrich Drepper | |
2010-01-22 | regex: avoid internal re_realloc overflow | Ulrich Drepper | |
2010-01-15 | One forgotten checkin from regex changes. | Ulrich Drepper | |
2010-01-15 | Fix a few more cases of ignored return values in regex. | Ulrich Drepper | |
2010-01-14 | regcomp.c: do not ignore memory allocation failure | Paul Eggert | |
2010-01-14 | Relax conditions in unistd.h. | Ulrich Drepper | |
2010-01-14 | Relax visibility of some more declaration. | Ulrich Drepper | |
2010-01-14 | Declare getpagesize in _GNU_SOURCE mode again. | Ulrich Drepper | |
2010-01-12 | Fix up sched.h for XPG7. | Ulrich Drepper | |
2010-01-12 | Fix compile error with sys/wait.h. | Jakub Jelinek | |
2010-01-11 | Fix handling symbols removed in XPG7. | Ulrich Drepper | |
2010-01-11 | Fix up unistd.h for XPG7. | Ulrich Drepper | |
2010-01-10 | Fix up sys/wait.h header for XPG7. | Ulrich Drepper | |
2010-01-10 | Fix up sys/types.h for XPG7. | Ulrich Drepper | |
Also fix a test. | |||
2010-01-10 | Fix glob.h for XPG7. | Ulrich Drepper | |
2010-01-09 | Add support for XPG7 testing. | Ulrich Drepper | |
The header conformance testing code needed extending for XPG7. This exposed a few bugs in the headers. There are more changes to come. | |||
2009-12-09 | Add more warnings to exec functions. | Bruno Haible | |
2009-11-17 | Whitespace fixes. | Ulrich Drepper | |
2009-11-17 | Fix ranges with multibyte characters as endpoints. | Paolo Bonzini | |
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. | |||
2009-11-14 | Add missing stdio.h include. | Mike Frsyinger | |
2009-09-09 | Handle -- on getconf command line. | Ulrich Drepper | |
2009-09-07 | Handle POSIX2_LINE_MAX in getconf. | Ulrich Drepper | |
2009-08-23 | Extend last test case. | Ulrich Drepper | |
2009-08-23 | Add test case for last fixed regex bug. | Ulrich Drepper | |