summaryrefslogtreecommitdiff
path: root/src/stdio
AgeCommit message (Expand)AuthorFilesLines
2018-08-30prevent perror from clobbering stderr's orientationRich Felker1-0/+8
2018-08-29make vfprintf set stream orientation even for zero-length outputRich Felker1-1/+2
2018-08-29re-fix vfprintf temporary buffer logicRich Felker1-2/+2
2018-08-29fix missing flush of stderr at exit if it was put in buffered modeRich Felker1-0/+1
2018-08-28vfwprintf: honor field width with 'c' format typeA. Wilcox1-1/+4
2018-08-28set stream orientations in open_[w]memstreamRich Felker2-0/+3
2018-08-28make fmemopen's w+ mode truncate the bufferRich Felker1-0/+1
2018-08-28set errno when fileno is called on a FILE with no underlying fdRich Felker1-4/+7
2018-08-23fix printf precision specifier for hex floats on non-ld80 archsRich Felker1-0/+1
2018-07-13fix writes outside buffer by ungetc after setvbufRich Felker1-1/+1
2018-04-19setvbuf: minor comment typo fixWill Dietz1-1/+1
2018-04-18add support for caller-provided buffers to setvbufRich Felker1-11/+14
2018-04-18clean up allocation/setup logic for open_[w]memstreamRich Felker2-38/+50
2018-04-18clean up allocation/setup logic for fmemopenRich Felker1-21/+31
2018-04-18minor cleanup in fopencookieRich Felker1-5/+2
2018-04-18refactor flockfile not to duplicate lock mechanism logicRich Felker2-12/+14
2018-04-18fix stdio lock dependency on read-after-free not faultingRich Felker3-20/+24
2018-02-24fix aliasing violations in fgetpos/fsetposRich Felker2-2/+2
2018-02-24in vswprintf, initialize the FILE rather than memset-and-assignRich Felker1-9/+8
2018-02-24remove unused MIN macro from getdelim source fileRich Felker1-2/+0
2018-02-24remove useless null check before call to free in fcloseRich Felker1-1/+1
2018-02-24remove useless and confusing parentheses in stdio __towrite functionRich Felker1-1/+1
2018-02-24avoid use of readv syscall in __stdio_read backend when not neededRich Felker1-1/+2
2018-02-24consistently return number of bytes read from stdio read backendRich Felker2-2/+2
2018-02-24remove obfuscated flags bit-twiddling logic in __stdio_readRich Felker1-1/+1
2018-02-11fix incorrect overflow check for allocation in fmemopenRich Felker1-1/+1
2018-01-10fix printf alt-form octal with value 0 and no explicit precisionRich Felker1-2/+2
2018-01-09revise the definition of multiple basic locks in the codeJens Gustedt1-1/+1
2017-12-06implement the fopencookie extension to stdioWilliam Pitcock1-0/+138
2017-11-20make fgetwc handling of encoding errors consistent with/without bufferRich Felker1-14/+14
2017-11-20fix treatment by fgetws of encoding errors as eofRich Felker1-1/+6
2017-11-18fix fgetwc when decoding a character that crosses buffer boundarySzabolcs Nagy1-0/+1
2017-09-04handle whitespace before %% in scanfBartosz Brachaczek2-5/+13
2017-08-29fix unsynchronized access to FILE structure in fflush(0)Rich Felker1-1/+4
2017-07-04remove ineffective compiler assist from printfAlexander Monakov2-4/+0
2017-07-04reapply va_arg hacks removal to wprintfAlexander Monakov1-26/+1
2017-04-22remove va_arg hacks in printf core with undefined behaviorRich Felker1-26/+1
2017-03-14fix wide scanf's use of a compound literal past its lifetimeRich Felker1-1/+2
2016-11-07fix swprintf internal buffer state and error handlingRich Felker1-1/+8
2016-10-21redesign snprintf without undefined behaviorRich Felker1-25/+38
2016-10-20fix float formatting of some exact halfway casesSzabolcs Nagy1-1/+2
2016-10-20fix integer overflows and uncaught EOVERFLOW in printf coreRich Felker2-46/+89
2016-10-19fix integer overflow in float printf needed-precision computationRich Felker1-1/+1
2016-09-18simplify/refactor fflush and make fflush_unlocked an alias for fflushRich Felker1-30/+23
2016-09-16fix printf regression with alt-form octal, zero flag, and field widthRich Felker1-1/+1
2016-04-26fix FILE buffer underflow in ungetwcRich Felker1-3/+3
2016-03-28fix undefined pointer comparison in stdio-internal __toreadRich Felker1-1/+1
2016-03-16fix padding string formats to width in wide printf variantsRich Felker1-4/+4
2016-02-16fix assumption in fputs that fwrite returning 0 implies an errorRich Felker1-1/+2
2016-02-10fix return value for fread/fwrite when size argument is 0Rich Felker2-0/+2