summaryrefslogtreecommitdiff
path: root/src/stdio
AgeCommit message (Expand)AuthorLines
2016-02-16fix assumption in fputs that fwrite returning 0 implies an errorRich Felker-1/+2
2016-02-10fix return value for fread/fwrite when size argument is 0Rich Felker-0/+2
2016-02-10fix failed write reporting by fwrite in line-buffered modeRich Felker-2/+2
2015-12-20fix overly pessimistic realloc strategy in getdelimRich Felker-1/+1
2015-12-19avoid updating caller's size when getdelim fails to reallocRich Felker-5/+6
2015-10-24fix single-byte overflow of malloc'd buffer in getdelimRich Felker-1/+1
2015-10-08fix open_[w]memstream behavior when no writes take placeRich Felker-4/+18
2015-09-09fix fclose of permanent (stdin/out/err) streamsRich Felker-2/+3
2015-08-09fix failure of tempnam to null-terminate resultRich Felker-0/+1
2015-06-16refactor stdio open file list handling, move it out of global libc structRich Felker-36/+37
2015-06-16byte-based C locale, phase 2: stdio and iconv (multibyte callers)Rich Felker-8/+33
2015-06-13remove cancellation points in stdioRich Felker-24/+3
2015-06-13fix idiom for setting stdio stream orientation to wideRich Felker-6/+6
2015-06-13add printing of null %s arguments as "(null)" in wide printfRich Felker-0/+1
2015-06-13add %m support to wide printfRich Felker-0/+2
2015-06-06remove another invalid skip of locking in ungetwcRich Felker-3/+1
2015-06-06remove invalid skip of locking in ungetwcRich Felker-6/+3
2015-05-29fix failure of ungetc and ungetwc to work on files in eof statusRich Felker-10/+11
2015-04-04fix getdelim to set the error indicator on all failuresSzabolcs Nagy-2/+5
2015-02-23fix possible isatty false positives and unwanted device state changesRich Felker-6/+4
2015-02-13overhaul aio implementation for correctnessRich Felker-1/+8
2014-12-18don't suppress sign output for NANs in printfRich Felker-1/+1
2014-12-17correctly handle write errors encountered by printf-family functionsRich Felker-2/+12
2014-11-15fix behavior of printf with alt-form octal, zero precision, zero valueRich Felker-1/+1
2014-09-19fix linked list corruption in flockfile listsRich Felker-0/+1
2014-09-04fix multiple stdio functions' behavior on zero-length operationsRich Felker-9/+7
2014-09-04suppress null termination when fgets reads EOF with no dataRich Felker-1/+1
2014-08-23fix false ownership of stdio FILEs due to tid reuseRich Felker-2/+36
2014-07-16work around constant folding bug 61144 in gcc 4.9.0 and 4.9.1Rich Felker-5/+5
2014-07-16simplify __stdio_exit static linking logicRich Felker-11/+8
2014-07-02fix failure of wide printf/scanf functions to set wide orientationRich Felker-0/+3
2014-07-01fix incorrect return value for fwide functionRich Felker-1/+2
2014-06-10replace all remaining internal uses of pthread_self with __pthread_selfRich Felker-1/+1
2014-06-06add O_CLOEXEC fallback for open and related functionsRich Felker-0/+3
2014-06-06fix fd leak in tmpfile when the fdopen operation failsRich Felker-1/+2
2014-06-04simplify vasprintf implementationRich Felker-14/+1
2014-05-30use cleaner code for handling float rounding in vfprintfSzabolcs Nagy-3/+1
2014-05-29support linux kernel apis (new archs) with old syscalls removedRich Felker-2/+31
2014-05-27fix missing declaration of strcpy in implementation of tmpnamRich Felker-0/+1
2014-05-27overhaul tmpfile, tmpnam, and tempnam functionsRich Felker-55/+48
2014-05-24support kernels with no SYS_open syscall, only SYS_openatRich Felker-3/+3
2014-04-07fix printf rounding with %g for some corner case midpointsRich Felker-1/+1
2014-04-07fix failure of printf %g to strip trailing zeros in some casesRich Felker-1/+1
2014-04-07fix carry into uninitialized slots during printf floating point roundingRich Felker-1/+1
2014-03-24always initialize thread pointer at program startRich Felker-14/+6
2014-03-09fix incorrect rounding in printf floating point corner casesRich Felker-2/+2
2014-03-09fix buffer overflow in printf formatting of denormals with low bit setRich Felker-1/+2
2014-02-07in fdopen, avoid setting O_APPEND flag if it's already setRich Felker-1/+2
2014-02-07fix ftello result for append streams with unflushed outputRich Felker-1/+4
2014-01-08add __isoc99_vfscanf weak alias to vfscanfSzabolcs Nagy-0/+2