Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2012-01-01 | Update copyright year | Ulrich Drepper | 1 | -0/+19 | |
2011-12-30 | Fix up regcomp/regexec | Jakub Jelinek | 1 | -0/+5 | |
The problem is that parse_bracket_symbol is miscompiled, and it turns out it is because of an incorrect attribute on re_string_fetch_byte_case. Unlike re_string_peek_byte_case, this one is really not pure, it modifies memory (increments pstr->cur_idx), and with the pure attribute GCC assumed it doesn't and it cached the presumed value of regexp->cur_idx in a variable across the for (;; ++i) { if (i >= BRACKET_NAME_BUF_SIZE) return REG_EBRACK; if (token->type == OP_OPEN_CHAR_CLASS) ch = re_string_fetch_byte_case (regexp); else ch = re_string_fetch_byte (regexp); if (re_string_eoi(regexp)) return REG_EBRACK; if (ch == delim && re_string_peek_byte (regexp, 0) == ']') break; elem->opr.name[i] = ch; } | |||||
2011-12-23 | Preliminaries for 2.15 releaseglibc-2.15 | Ulrich Drepper | 1 | -0/+3 | |
2011-12-23 | Fix typos in comments | Marek Polacek | 1 | -0/+3 | |
2011-12-23 | Prevent warnings due to long long constants | Ulrich Drepper | 1 | -0/+8 | |
2011-12-23 | CL | Liubov Dmitrieva | 1 | -2/+2 | |
2011-12-23 | Fix overrun in destination buffer | Liubov Dmitrieva | 1 | -0/+8 | |
2011-12-23 | Add missing inline keyword | Marek Polacek | 1 | -0/+8 | |
According to http://gcc.gnu.org/ml/gcc-patches/2011-09/msg00608.html, a function without `inline' with an `always_inline' attribute is a bug. | |||||
2011-12-23 | Add another BZ | Ulrich Drepper | 1 | -0/+1 | |
2011-12-23 | Optimize x86-32 feraiseexcept also for !__SSE_MATH__ | Ulrich Drepper | 1 | -0/+5 | |
2011-12-23 | Fix wrong copying processing for last bytes in x86-32 wcscpy | Liubov Dmitrieva | 1 | -0/+5 | |
Wrong copy algorithm for last bytes, not thread safety. In some particular cases it uses the destination memory beyond the string end for 16-byte load, puts changes into that part that is relevant to destination string and writes whole 16-byte chunk into memory. I have a test case where the memory beyond the string end contains malloc/free data, that appear corrupted in case free() updates it in between the 16-byte read and 16-byte write. | |||||
2011-12-23 | iconv mapping of 0xA8 0xEC in CP1258 is non-canonical | Bruno Haible | 1 | -0/+4 | |
2011-12-23 | iconv mapping of U+0385 in TCVN5712-1 is incorrect | Bruno Haible | 1 | -0/+6 | |
2011-12-22 | Fix error code for too small input buffer to getnameinfo | Ulrich Drepper | 1 | -0/+4 | |
2011-12-22 | Add missing BZ | Ulrich Drepper | 1 | -0/+1 | |
2011-12-22 | Add feraiseexcept optimization for x86-32 | Ulrich Drepper | 1 | -0/+3 | |
2011-12-22 | Also retrieve SSE exceptions in x86-32 fegetexceptflag | Ulrich Drepper | 1 | -0/+6 | |
2011-12-22 | Merge branch 'master' of ssh://sourceware.org/git/glibc | Ulrich Drepper | 1 | -0/+28 | |
Conflicts: ChangeLog | |||||
2011-12-22 | Fix overrun in strcpy destination buffer in x86-32/SSSE3 version | Liubov Dmitrieva | 1 | -0/+5 | |
2011-12-22 | Support building bits/syscall.h for any number of subarch variants. | Joseph Myers | 1 | -0/+28 | |
2011-12-22 | Add brx_IN locale | Ulrich Drepper | 1 | -0/+2 | |
2011-12-22 | Optimize tr_freehook | Ulrich Drepper | 1 | -0/+4 | |
2011-12-22 | Use __REDIRECT_NTH for __feraiseexcept_renamed | Ulrich Drepper | 1 | -0/+5 | |
2011-12-21 | Define EPOLLONESHOT and EPOLLET using unsigned values | Ulrich Drepper | 1 | -0/+6 | |
2011-12-21 | Use Kahan's formula in cacosh | Ulrich Drepper | 1 | -0/+7 | |
2011-12-21 | Fix sign errr in some cacosh results | Richard B. Kreckel | 1 | -0/+7 | |
2011-12-21 | Store invocation-specific data of conversion modules in __gconv_step_data | Ulrich Drepper | 1 | -0/+8 | |
2011-12-21 | Fix division by denominator with more than two limbs in strtold | Andreas Schwab | 1 | -0/+6 | |
2011-12-21 | Define x86_64 feraiseexcept inline only under __USE_EXTERN_INLINES. | Rafael Ávila de Espíndola | 1 | -0/+5 | |
2011-12-17 | Fix extension of array in extended printf format handling | Ulrich Drepper | 1 | -0/+5 | |
2011-12-17 | Optimized strcasecmp for Power7 | Adhemerval Zanella | 1 | -0/+13 | |
2011-12-17 | Avoid warnings in __*_finite math function declarations with C++ | Marek Polacek | 1 | -0/+6 | |
2011-12-17 | Check values from TZ file header | Ulrich Drepper | 1 | -0/+5 | |
2011-12-17 | Simplify code for accessing powerpc GOT | Will Schmidt | 1 | -0/+34 | |
2011-12-17 | Optimized nearbyint for PPC | Adhemerval Zanella | 1 | -0/+8 | |
2011-12-17 | Open /etc/resolv.conf with FD_CLOEXEC | Ross Lagerwall | 1 | -0/+5 | |
2011-12-17 | Optimized wcschr and wcscpy for x86-64 and x86-32 | Ulrich Drepper | 1 | -0/+25 | |
2011-12-17 | Add tests for wcsrchr and wcscpy | Ulrich Drepper | 1 | -3/+8 | |
2011-12-14 | Manual typo fix for _SC_NPROCESSORS_ONLN. | Jeff Law | 1 | -0/+5 | |
2011-12-10 | Optimize generic ELF hash function a bit more | Ulrich Drepper | 1 | -0/+5 | |
2011-12-06 | Fix a wrong constant in powerpc hypot implementation | Andreas Schwab | 1 | -0/+5 | |
2011-12-04 | Small optimization of generic ELF hash function | Ulrich Drepper | 1 | -0/+1 | |
2011-12-04 | Fix attreibute for _dl_elf_hash | Ulrich Drepper | 1 | -0/+2 | |
2011-12-04 | Fix aliasing issues in RPC code | Ulrich Drepper | 1 | -0/+6 | |
2011-12-03 | Fix more warnings | Ulrich Drepper | 1 | -0/+16 | |
2011-12-03 | Fix comment in mcheck.h | Ulrich Drepper | 1 | -0/+4 | |
2011-12-02 | Remove aliasing problems in NIS code | Ulrich Drepper | 1 | -0/+3 | |
2011-12-02 | Avoid warning in aicache.c | Ulrich Drepper | 1 | -0/+4 | |
2011-12-02 | SH atomic asms fix for gcc 4.7 | Ulrich Drepper | 1 | -0/+10 | |
2011-12-02 | Implement SH backtrace using IA64 version | Ulrich Drepper | 1 | -0/+4 | |