OSDN Git Service

fix deadlock and buffered data loss race in fclose
[android-x86/external-musl-libc.git] / src / stdio /
2018-11-02 Rich Felkerfix deadlock and buffered data loss race in fclose
2018-10-18 Rich Felkerfurther optimize getc/putc when locking is needed
2018-10-18 Rich Felkerfix build regression due to missing file for putc changes
2018-10-18 Rich Felkerbypass indirection through pointer objects to access...
2018-10-18 Rich Felkeroptimize hot paths of putc with manual shrink-wrapping
2018-10-18 Rich Felkeroptimize hot paths of getc with manual shrink-wrapping
2018-10-16 Rich Felkermove stdio locking MAYBE_WAITERS definition to stdio_impl.h
2018-09-18 Kaarle Ritvanenfix race condition in file locking
2018-09-17 Rich Felkergetdelim: only grow buffer when necessary, improve...
2018-09-16 Rich Felkerfix null pointer subtraction and comparison in stdio
2018-09-16 Rich Felkerfix failure of getdelim to set stream orientation on...
2018-09-12 Rich Felkersplit internal lock API out of libc.h, creating lock.h
2018-09-12 Rich Felkerremove spurious inclusion of libc.h for LFS64 ABI aliases
2018-09-12 Rich Felkerreduce spurious inclusion of libc.h
2018-09-12 Rich Felkerhide purely dependency-triggering functions in stdio...
2018-09-12 Rich Felkeroverhaul internally-public declarations using wrapper...
2018-09-12 Rich Felkermove __stdio_exit_needed to stdio_impl.h
2018-09-12 Rich Felkermake internal declarations for flockfile tracking funct...
2018-09-12 Rich Felkerfix issues from public functions defined without declar...
2018-08-30 Rich Felkerprevent perror from clobbering stderr's orientation
2018-08-30 Rich Felkermake vfprintf set stream orientation even for zero...
2018-08-30 Rich Felkerre-fix vfprintf temporary buffer logic
2018-08-30 Rich Felkerfix missing flush of stderr at exit if it was put in...
2018-08-29 A. Wilcoxvfwprintf: honor field width with 'c' format type
2018-08-29 Rich Felkerset stream orientations in open_[w]memstream
2018-08-28 Rich Felkermake fmemopen's w+ mode truncate the buffer
2018-08-28 Rich Felkerset errno when fileno is called on a FILE with no under...
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...
next