Age | Commit message (Expand) | Author | Files | Lines |
2015-03-30 | correctly handle write errors encountered by printf-family functions | Rich Felker | 2 | -2/+12 |
2015-03-30 | fix behavior of printf with alt-form octal, zero precision, zero value | Rich Felker | 1 | -1/+1 |
2015-03-30 | fix multiple stdio functions' behavior on zero-length operations | Rich Felker | 4 | -9/+7 |
2015-03-30 | suppress null termination when fgets reads EOF with no data | Rich Felker | 1 | -1/+1 |
2014-07-28 | work around constant folding bug 61144 in gcc 4.9.0 and 4.9.1 | Rich Felker | 5 | -5/+5 |
2014-07-28 | simplify __stdio_exit static linking logic | Rich Felker | 3 | -11/+8 |
2014-07-28 | fix failure of wide printf/scanf functions to set wide orientation | Rich Felker | 2 | -0/+3 |
2014-07-28 | fix incorrect return value for fwide function | Rich Felker | 1 | -1/+2 |
2014-04-16 | fix printf rounding with %g for some corner case midpoints | Rich Felker | 1 | -1/+1 |
2014-04-16 | fix failure of printf %g to strip trailing zeros in some cases | Rich Felker | 1 | -1/+1 |
2014-04-16 | fix carry into uninitialized slots during printf floating point rounding | Rich Felker | 1 | -1/+1 |
2014-03-09 | fix incorrect rounding in printf floating point corner cases | Rich Felker | 1 | -2/+2 |
2014-03-09 | fix buffer overflow in printf formatting of denormals with low bit set | Rich Felker | 1 | -1/+2 |
2014-02-07 | in fdopen, avoid setting O_APPEND flag if it's already set | Rich Felker | 1 | -1/+2 |
2014-02-07 | fix ftello result for append streams with unflushed output | Rich Felker | 2 | -1/+4 |
2014-01-08 | add __isoc99_vfscanf weak alias to vfscanf | Szabolcs Nagy | 1 | -0/+2 |
2013-12-12 | include cleanups: remove unused headers and add feature test macros | Szabolcs Nagy | 6 | -9/+3 |
2013-10-07 | minor vfprintf and vfwprintf changes to please static code analyzers | Szabolcs Nagy | 2 | -6/+11 |
2013-10-04 | removed unused variable in vfwprintf | Rich Felker | 1 | -2/+1 |
2013-09-01 | fix special-case breakage in popen due to reversed argument order | Rich Felker | 1 | -1/+1 |
2013-08-31 | fix invalid %m format crash in wide scanf variants | Rich Felker | 1 | -0/+2 |
2013-08-31 | avoid crash in scanf when invalid %m format is encountered | Rich Felker | 1 | -0/+2 |
2013-08-02 | protect against long double type mismatches (mainly powerpc for now) | Rich Felker | 1 | -0/+7 |
2013-07-20 | fix uninitialized/stale use of alloc (%m modifier) flag in scanf | Rich Felker | 2 | -0/+4 |
2013-06-22 | fix scanf %c conversion wrongly storing a terminating null byte | Rich Felker | 2 | -4/+8 |
2013-06-06 | implement 'm' modifier for wide scanf variants | Rich Felker | 1 | -7/+40 |
2013-06-05 | implement the 'm' (malloc) modifier for scanf | Rich Felker | 1 | -22/+48 |
2013-06-05 | refactor wide-char scanf string handling | Rich Felker | 1 | -55/+32 |
2013-06-04 | simplify some logic in scanf and remove redundant invalid-format check | Rich Felker | 1 | -18/+8 |
2013-06-04 | refactor scanf core to use common code path for all string formats | Rich Felker | 1 | -85/+52 |
2013-04-06 | fix argument omission in ABI-compat weak_alias for fscanf | Rich Felker | 1 | -1/+1 |
2013-04-05 | Add ABI compatability aliases. | Isaac Dunham | 11 | -0/+33 |
2013-03-24 | rewrite popen to use posix_spawn instead of fragile vfork hacks | Rich Felker | 1 | -41/+41 |
2012-12-10 | document self-synchronized destruction issue for stdio locking | Rich Felker | 1 | -0/+10 |
2012-11-09 | always add memory streams to stdio open file list | Rich Felker | 3 | -18/+21 |
2012-11-08 | clean up sloppy nested inclusion from pthread_impl.h | Rich Felker | 2 | -0/+4 |
2012-11-08 | clean up stdio_impl.h | Rich Felker | 35 | -2/+83 |
2012-11-01 | fix more unused variable warnings | Rich Felker | 2 | -3/+2 |
2012-10-27 | separate getc/putc from fgetc/fputc | Rich Felker | 4 | -6/+25 |
2012-10-24 | correct locking in stdio functions that tried to be lock-free | Rich Felker | 6 | -16/+36 |
2012-10-24 | greatly improve freopen behavior | Rich Felker | 3 | -15/+27 |
2012-10-24 | remove useless failure-check from freopen (can't happen) | Rich Felker | 1 | -2/+2 |
2012-10-21 | fix copy/paste error in popen changes that broke signals | Rich Felker | 1 | -1/+1 |
2012-10-19 | fix usage of locks with vfork | Rich Felker | 1 | -1/+1 |
2012-10-18 | avoid raising spurious division-by-zero exception in printf | Rich Felker | 1 | -1/+1 |
2012-10-18 | overhaul system() and popen() to use vfork; fix various related bugs | Rich Felker | 1 | -24/+44 |
2012-09-29 | add 'e' modifier (close-on-exec) to fopen and fdopen | Rich Felker | 2 | -2/+5 |
2012-09-29 | fix some more O_CLOEXEC/SOCK_CLOEXEC issues | Rich Felker | 1 | -1/+1 |
2012-09-06 | fix invalid implicit pointer conversion in gnulib-compat functions | Rich Felker | 1 | -1/+1 |
2012-09-06 | use restrict everywhere it's required by c99 and/or posix 2008 | Rich Felker | 42 | -43/+43 |