harden dynamic linker library path search
[oweals/musl.git] / src / stdio /
2015-02-23 Rich Felkerfix possible isatty false positives and unwanted device...
2015-02-13 Rich Felkeroverhaul aio implementation for correctness
2014-12-18 Rich Felkerdon't suppress sign output for NANs in printf
2014-12-17 Rich Felkercorrectly handle write errors encountered by printf...
2014-11-15 Rich Felkerfix behavior of printf with alt-form octal, zero precis...
2014-09-19 Rich Felkerfix linked list corruption in flockfile lists
2014-09-05 Rich Felkerfix multiple stdio functions' behavior on zero-length...
2014-09-05 Rich Felkersuppress null termination when fgets reads EOF with...
2014-08-24 Rich Felkerfix false ownership of stdio FILEs due to tid reuse
2014-07-17 Rich Felkerwork around constant folding bug 61144 in gcc 4.9.0...
2014-07-17 Rich Felkersimplify __stdio_exit static linking logic
2014-07-02 Rich Felkerfix failure of wide printf/scanf functions to set wide...
2014-07-01 Rich Felkerfix incorrect return value for fwide function
2014-06-10 Rich Felkerreplace all remaining internal uses of pthread_self...
2014-06-06 Rich Felkeradd O_CLOEXEC fallback for open and related functions
2014-06-06 Rich Felkerfix fd leak in tmpfile when the fdopen operation fails
2014-06-04 Rich Felkersimplify vasprintf implementation
2014-05-30 Szabolcs Nagyuse cleaner code for handling float rounding in vfprintf
2014-05-30 Rich Felkersupport linux kernel apis (new archs) with old syscalls...
2014-05-27 Rich Felkerfix missing declaration of strcpy in implementation...
2014-05-27 Rich Felkeroverhaul tmpfile, tmpnam, and tempnam functions
2014-05-25 Rich Felkersupport kernels with no SYS_open syscall, only SYS_openat
2014-04-07 Rich Felkerfix printf rounding with %g for some corner case midpoints
2014-04-07 Rich Felkerfix failure of printf %g to strip trailing zeros in...
2014-04-07 Rich Felkerfix carry into uninitialized slots during printf floati...
2014-03-24 Rich Felkeralways initialize thread pointer at program start
2014-03-09 Rich Felkerfix incorrect rounding in printf floating point corner...
2014-03-09 Rich Felkerfix buffer overflow in printf formatting of denormals...
2014-02-07 Rich Felkerin fdopen, avoid setting O_APPEND flag if it's already set
2014-02-07 Rich Felkerfix ftello result for append streams with unflushed...
2014-01-08 Szabolcs Nagyadd __isoc99_vfscanf weak alias to vfscanf
2013-12-12 Szabolcs Nagyinclude cleanups: remove unused headers and add feature...
2013-10-07 Szabolcs Nagyminor vfprintf and vfwprintf changes to please static...
2013-10-04 Rich Felkerremoved unused variable in vfwprintf
2013-09-01 Rich Felkerfix special-case breakage in popen due to reversed...
2013-09-01 Rich Felkerfix invalid %m format crash in wide scanf variants
2013-09-01 Rich Felkeravoid crash in scanf when invalid %m format is encountered
2013-08-02 Rich Felkerprotect against long double type mismatches (mainly...
2013-07-20 Rich Felkerfix uninitialized/stale use of alloc (%m modifier)...
2013-06-22 Rich Felkerfix scanf %c conversion wrongly storing a terminating...
2013-06-06 Rich Felkerimplement 'm' modifier for wide scanf variants
2013-06-05 Rich Felkerimplement the 'm' (malloc) modifier for scanf
2013-06-05 Rich Felkerrefactor wide-char scanf string handling
2013-06-04 Rich Felkersimplify some logic in scanf and remove redundant inval...
2013-06-04 Rich Felkerrefactor scanf core to use common code path for all...
2013-04-06 Rich Felkerfix argument omission in ABI-compat weak_alias for...
2013-04-06 Isaac DunhamAdd ABI compatability aliases.
2013-03-25 Rich Felkerrewrite popen to use posix_spawn instead of fragile...
2012-12-10 Rich Felkerdocument self-synchronized destruction issue for stdio...
2012-11-14 Rich FelkerMerge remote-tracking branch 'ppc-port/ppc-squashed'
2012-11-09 Rich Felkeralways add memory streams to stdio open file list
2012-11-08 Rich Felkerclean up sloppy nested inclusion from pthread_impl.h
2012-11-08 Rich Felkerclean up stdio_impl.h
2012-11-02 Rich Felkerfix more unused variable warnings
2012-10-27 Rich Felkerseparate getc/putc from fgetc/fputc
2012-10-25 Rich Felkercorrect locking in stdio functions that tried to be...
2012-10-25 Rich Felkergreatly improve freopen behavior
2012-10-25 Rich Felkerremove useless failure-check from freopen (can't happen)
2012-10-21 Rich Felkerfix copy/paste error in popen changes that broke signals
2012-10-19 Rich Felkerfix usage of locks with vfork
2012-10-19 Rich Felkeravoid raising spurious division-by-zero exception in...
2012-10-18 Rich Felkeroverhaul system() and popen() to use vfork; fix various...
2012-09-29 Rich Felkeradd 'e' modifier (close-on-exec) to fopen and fdopen
2012-09-29 Rich Felkerfix some more O_CLOEXEC/SOCK_CLOEXEC issues
2012-09-07 Rich Felkerfix invalid implicit pointer conversion in gnulib-compa...
2012-09-07 Rich Felkeruse restrict everywhere it's required by c99 and/or...
2012-08-26 Rich Felkerimplement "low hanging fruit" from C11
2012-08-14 Rich FelkerMerge remote-tracking branch 'nsz/exp'
2012-08-11 Rich Felkeradd bsd fgetln function
2012-08-11 Rich Felkerminor but worthwhile optimization in printf: avoid...
2012-08-11 Rich Felkertrivial optimization to printf: avoid wasted call frame
2012-07-04 Rich Felkerputw is supposed to return 0 (not the value written...
2012-07-04 Rich Felkermake sure getw/putw agree with prototypes by defining...
2012-07-03 Rich Felkerfix missing function declarations for __stdio_exit
2012-06-20 Rich Felkerfix fwrite return value when full write does not succeed
2012-06-20 Rich Felkeravoid cancellation in pclose
2012-06-20 Rich Felkerfix invalid memory access in pclose
2012-06-20 Rich Felkermake popen cancellation-safe
2012-06-20 Rich Felkerpopen: handle issues with fd0/1 being closed
2012-06-20 Rich Felkerfix another oob pointer arithmetic issue in printf...
2012-06-20 Rich Felkerminor perror behavior fix
2012-06-20 Rich Felkerfix pointer overflow bug in floating point printf
2012-06-19 Rich Felkeradd new stdio extension functions to make gnulib happy
2012-06-19 Rich Felkerstdio: handle file position correctly at program exit
2012-06-19 Rich Felkerminor cleanup in fflush
2012-06-19 Rich Felkerremove flush hook cruft that was never used from stdio
2012-06-18 Rich Felkerchange stdio_ext __freading/__fwriting semantics slightly
2012-06-18 Rich Felkerfdopen should set errno when it fails due to invalid...
2012-06-08 Rich Felkerfix %ls breakage in last printf fix
2012-06-08 Rich Felkerfix printf %ls with precision limit over-read issue
2012-06-08 Rich Felkerfix scanf bug reading literals after width-limited...
2012-06-03 Rich Felkeradd some ugly aliases for LSB ABI compatibility
2012-05-26 Rich Felkeravoid using pthread cleanup push/pop in stdio when...
2012-05-04 Rich Felkerfix uninitialized var in vfwprintf printing 0-prec...
2012-04-19 Rich Felkerfix really bad breakage in strtol, etc.: failure to...
2012-04-18 Rich Felkerfix wide scanf's handling of input failure on %c, and...
2012-04-18 Rich Felkerfix failure to distinguish input/match failure in wide...
2012-04-18 Rich Felkerfix over-read in %ls with non-wide scanf
2012-04-18 Rich Felkerfix broken %s and %[ with no width specifier in wide...
2012-04-18 Rich Felkermake wide scanf %[ respect width
next