aboutsummaryrefslogtreecommitdiff
path: root/ChangeLog
AgeCommit message (Collapse)Author
2012-01-07Remove pre-ISO C supportUlrich Drepper
No more __const.
2012-01-07Remove non-ELF supportUlrich Drepper
2012-01-07Update ABI informationUlrich Drepper
2012-01-07Remove m68k support from Linux configureUlrich Drepper
2012-01-07Remove Alpha support from ldsodefs.hUlrich Drepper
2012-01-07Clean up shlib-versions filesUlrich Drepper
Ports have their own files
2012-01-07More IA-64 removalUlrich Drepper
2012-01-07Linux configure cleanupUlrich Drepper
2012-01-07Remove IA-64 support from kernel-features.hUlrich Drepper
2012-01-07Remove --enable-omitfp supportUlrich Drepper
2012-01-07Remove IA-64 supportUlrich Drepper
2012-01-07Remove support in configure for unsupported architecturesUlrich Drepper
2012-01-07Add BZUlrich Drepper
2012-01-07More char16_t and char32_t supportUlrich Drepper
It works now for UTF-8 locales
2012-01-07Do not declare gets in _GNU_SOURCE mode at allUlrich Drepper
2012-01-07Merge branch 'master' of ssh://sourceware.org/git/glibcUlrich Drepper
Conflicts: ChangeLog
2012-01-07Add explicit declaration of gets in C++ codeUlrich Drepper
2012-01-07Fix problem with reuse of test-strcpy for wide char testingUlrich Drepper
2012-01-06Fix C11 header changes for C++.Joseph Myers
2012-01-03Fix assertion in gconv's loop.cUlrich Drepper
2012-01-03Merge branch 'c11'Ulrich Drepper
2012-01-03Optimize regex a bitUlrich Drepper
2012-01-01Add uchar.h support, part 1Ulrich Drepper
c16 support for locales other than the C locale is still missing.
2012-01-01Add missing restrict in mbrtowc declarationUlrich Drepper
2012-01-01Typo in CLUlrich Drepper
2012-01-01Implement timespec_getUlrich Drepper
2012-01-01Implement aligned_allocUlrich Drepper
2012-01-01Enable at_quick_exit and quick_exit for ISO C11Ulrich Drepper
2012-01-01Add __USE_ISOCXX11Ulrich Drepper
2012-01-01Remove gets declarationUlrich Drepper
2012-01-01Define static_assertUlrich Drepper
2012-01-01Start 2.16 developmentUlrich Drepper
2012-01-01Missing BZUlrich Drepper
2012-01-01Support C11 __STDC_SOURCE__ and _ISOC11_SOURCEUlrich Drepper
2012-01-01Also update new programsUlrich Drepper
2012-01-01Update copyright yearUlrich Drepper
2011-12-30Fix up regcomp/regexecJakub Jelinek
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-23Preliminaries for 2.15 releaseglibc-2.15Ulrich Drepper
2011-12-23Fix typos in commentsMarek Polacek
2011-12-23Prevent warnings due to long long constantsUlrich Drepper
2011-12-23CLLiubov Dmitrieva
2011-12-23Fix overrun in destination bufferLiubov Dmitrieva
2011-12-23Add missing inline keywordMarek Polacek
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-23Add another BZUlrich Drepper
2011-12-23Optimize x86-32 feraiseexcept also for !__SSE_MATH__Ulrich Drepper
2011-12-23Fix wrong copying processing for last bytes in x86-32 wcscpyLiubov Dmitrieva
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-23iconv mapping of 0xA8 0xEC in CP1258 is non-canonicalBruno Haible
2011-12-23iconv mapping of U+0385 in TCVN5712-1 is incorrectBruno Haible
2011-12-22Fix error code for too small input buffer to getnameinfoUlrich Drepper
2011-12-22Add missing BZUlrich Drepper