fix printf precision specifier for hex floats on non-ld80 archs
[musl] / src / stdio /
2018-08-23 Rich Felkerfix printf precision specifier for hex floats on non...
2018-07-14 Rich Felkerfix writes outside buffer by ungetc after setvbuf
2018-04-19 Will Dietzsetvbuf: minor comment typo fix
2018-04-18 Rich Felkeradd support for caller-provided buffers to setvbuf
2018-04-18 Rich Felkerclean up allocation/setup logic for open_[w]memstream
2018-04-18 Rich Felkerclean up allocation/setup logic for fmemopen
2018-04-18 Rich Felkerminor cleanup in fopencookie
2018-04-18 Rich Felkerrefactor flockfile not to duplicate lock mechanism...
2018-04-18 Rich Felkerfix stdio lock dependency on read-after-free not faulting
2018-02-24 Rich Felkerfix aliasing violations in fgetpos/fsetpos
2018-02-24 Rich Felkerin vswprintf, initialize the FILE rather than memset...
2018-02-24 Rich Felkerremove unused MIN macro from getdelim source file
2018-02-24 Rich Felkerremove useless null check before call to free in fclose
2018-02-24 Rich Felkerremove useless and confusing parentheses in stdio __tow...
2018-02-24 Rich Felkeravoid use of readv syscall in __stdio_read backend...
2018-02-24 Rich Felkerconsistently return number of bytes read from stdio...
2018-02-24 Rich Felkerremove obfuscated flags bit-twiddling logic in __stdio_read
2018-02-12 Rich Felkerfix incorrect overflow check for allocation in fmemopen
2018-01-11 Rich Felkerfix printf alt-form octal with value 0 and no explicit...
2018-01-09 Jens Gustedtrevise the definition of multiple basic locks in the...
2017-12-06 William Pitcockimplement the fopencookie extension to stdio
2017-11-20 Rich Felkermake fgetwc handling of encoding errors consistent...
2017-11-20 Rich Felkerfix treatment by fgetws of encoding errors as eof
2017-11-19 Szabolcs Nagyfix fgetwc when decoding a character that crosses buffe...
2017-09-04 Bartosz Brachaczekhandle whitespace before %% in scanf
2017-08-29 Rich Felkerfix unsynchronized access to FILE structure in fflush(0)
2017-07-04 Alexander Monakovremove ineffective compiler assist from printf
2017-07-04 Alexander Monakovreapply va_arg hacks removal to wprintf
2017-04-22 Rich Felkerremove va_arg hacks in printf core with undefined behavior
2017-03-14 Rich Felkerfix wide scanf's use of a compound literal past its...
2016-11-08 Rich Felkerfix swprintf internal buffer state and error handling
2016-10-22 Rich Felkerredesign snprintf without undefined behavior
2016-10-20 Szabolcs Nagyfix float formatting of some exact halfway cases
2016-10-20 Rich Felkerfix integer overflows and uncaught EOVERFLOW in printf...
2016-10-20 Rich Felkerfix integer overflow in float printf needed-precision...
2016-09-19 Rich Felkersimplify/refactor fflush and make fflush_unlocked an...
2016-09-16 Rich Felkerfix printf regression with alt-form octal, zero flag...
2016-04-26 Rich Felkerfix FILE buffer underflow in ungetwc
2016-03-29 Rich Felkerfix undefined pointer comparison in stdio-internal...
2016-03-16 Rich Felkerfix padding string formats to width in wide printf...
2016-02-16 Rich Felkerfix assumption in fputs that fwrite returning 0 implies...
2016-02-11 Rich Felkerfix return value for fread/fwrite when size argument...
2016-02-10 Rich Felkerfix failed write reporting by fwrite in line-buffered...
2015-12-20 Rich Felkerfix overly pessimistic realloc strategy in getdelim
2015-12-20 Rich Felkeravoid updating caller's size when getdelim fails to...
2015-10-25 Rich Felkerfix single-byte overflow of malloc'd buffer in getdelim
2015-10-08 Rich Felkerfix open_[w]memstream behavior when no writes take...
2015-09-09 Rich Felkerfix fclose of permanent (stdin/out/err) streams
2015-08-09 Rich Felkerfix failure of tempnam to null-terminate result
2015-06-16 Rich Felkerrefactor stdio open file list handling, move it out...
2015-06-16 Rich Felkerbyte-based C locale, phase 2: stdio and iconv (multibyt...
2015-06-13 Rich Felkerremove cancellation points in stdio
2015-06-13 Rich Felkerfix idiom for setting stdio stream orientation to wide
2015-06-13 Rich Felkeradd printing of null %s arguments as "(null)" in wide...
2015-06-13 Rich Felkeradd %m support to wide printf
2015-06-06 Rich Felkerremove another invalid skip of locking in ungetwc
2015-06-06 Rich Felkerremove invalid skip of locking in ungetwc
2015-05-29 Rich Felkerfix failure of ungetc and ungetwc to work on files...
2015-04-04 Szabolcs Nagyfix getdelim to set the error indicator on all failures
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
next