clean up dns_parse_callback
[musl] / src / stdio /
2022-10-19 Rich Felkerfgets: avoid arithmetic overflow when n==INT_MIN is...
2022-10-19 Rich Felkerremove LFS64 symbol aliases; replace with dynamic linke...
2022-09-07 Rich Felkerfix fwprintf missing output to open_wmemstream FILEs
2022-08-17 Rich Felkerfreopen: reset stream orientation (byte/wide) and encod...
2022-05-02 Rich Felkerdrop use of stat operation in temporary file name gener...
2022-02-21 Rich Felkerfix spurious failures by fgetws when buffer ends with...
2022-01-09 Rich Felkermake fseek detect and produce an error for invalid...
2021-09-12 Rich Felkerfix undefined behavior in getdelim via null pointer...
2021-04-20 Rich Felkerfix popen not to leak pipes from one child to another
2021-04-20 Rich Felkerremove spurious lock in popen
2021-03-15 Rich Felkerremove no-longer-needed special case handling in popen
2020-11-11 Rich Felkerlift child restrictions after multi-threaded fork
2020-10-15 Rich Felkermove aio implementation details to a proper internal...
2020-08-30 Rich Felkerclean up overinclusion in files using TIOCGWINSZ
2020-08-25 Rich Felkeradd tcgetwinsize and tcsetwinsize functions, move struc...
2020-07-02 Julien Ramseiervfscanf: fix possible invalid free due to uninitialized...
2020-04-17 Rich Felkermove __string_read into vsscanf source file
2020-04-17 Rich Felkerremove spurious repeated semicolon in fmemopen
2020-04-17 Rich Felkercombine two calls to memset in fmemopen
2020-04-17 Rich Felkerfix undefined behavior in scanf core
2020-02-22 Rich Felkerremove wrap_write helper from vdprintf
2020-02-12 Rich Felkerfix remaining direct use of stat syscalls outside fstatat.c
2019-10-19 Rich Felkerfix return value of ungetc when argument is outside...
2019-09-13 Brion Vibberfix %lf in wprintf
2019-07-16 Rich Felkeruse namespace-safe __lseek for __stdio_seek instead...
2019-06-25 Rich Felkerallow fmemopen with zero size
2019-05-06 Rich Felkermake fgetwc set error indicator for stream on encoding...
2019-03-22 Drew DeVaultsupport archs with no renameat syscall, only renameat2
2019-03-12 A. Wilcoxsetvbuf: return failure if mode is invalid
2019-02-13 Rich Felkerfix behavior of gets when input line contains a null...
2018-11-02 Rich Felkerfix failure to flush stderr when fflush(0) is called
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...
next