fix off-by-one error that caused uninitialized memory read in floatscan
[musl] / src / stdio /
2012-04-19 Rich Felkerfix really bad breakage in strtol, etc.: failure to...
2012-04-18 Rich Felkerfix wide scanf's handling of input failure on %c, and...
2012-04-18 Rich Felkerfix failure to distinguish input/match failure in wide...
2012-04-18 Rich Felkerfix over-read in %ls with non-wide scanf
2012-04-18 Rich Felkerfix broken %s and %[ with no width specifier in wide...
2012-04-18 Rich Felkermake wide scanf %[ respect width
2012-04-17 Rich Felkerfix wide scanf to respect field width for strings
2012-04-17 Rich Felkerfix some bugs in scanf %[ handling detected while writi...
2012-04-17 Rich Felkerintroduce new wide scanf code and remove the last remna...
2012-04-17 Rich Felkeravoid depending on POSIX symbol in code used from plain...
2012-04-17 Rich Felkeravoid null pointer dereference on %*p fields in scanf
2012-04-17 Rich Felkeralso ensure that write buffer is bounded when __stdio_w...
2012-04-17 Rich Felkerfix buffer overflow in vfprintf on long writes to unbuf...
2012-04-17 Rich Felkerfix %lf, etc. with printf
2012-04-16 Rich Felkernew scanf implementation and corresponding integer...
2012-03-17 Rich FelkerMerge remote branch 'nsz/master'
2012-03-13 Rich Felkerfix scanf handling of "0" (followed by immediate EOF...
2012-02-02 Rich Felkermake stdio open, read, and write operations cancellatio...
2011-10-15 Rich Felkersimplify atexit and fflush-on-exit handling
2011-09-29 Rich Felkerdon't crash on null strings in printf
2011-09-22 Rich Felkeravoid setting FILE lock count when not using flockfile
2011-09-05 Rich Felkermore fmemopen null termination fixes
2011-09-05 Rich Felkerfix some fmemopen behaviors
2011-09-04 Rich Felkerfmemopen: fix eof handling, hopefully right this time
2011-09-04 Rich Felkerfmemopen fixes
2011-09-04 Rich Felkermemstreams: fix incorrect handling of file pos > curren...
2011-09-04 Rich Felkeroptimize seek function for memory streams
2011-09-04 Rich Felkerfix twos complement overflow bug in mem streams boundar...
2011-09-04 Rich Felkerimplement fmemopen
2011-09-04 Rich Felkerfix some length calculations in memory streams
2011-09-03 Rich Felkerimplement open_wmemstream
2011-09-03 Rich Felkerimplement open_memstream
2011-08-01 Rich Felkerfix crash in dns code with new stdio locking code
2011-07-30 Rich Felkeradd proper fuxed-based locking for stdio
2011-07-30 Rich Felkereliminate dependence of perror on printf
2011-07-17 Rich Felkerfix logic error in fread
2011-07-04 Rich Felkerprintf: "if a precision is specified, the '0' flag...
2011-07-04 Rich Felkerzero precision with zero value should not inhibit prefi...
2011-07-04 Rich Felkerprintf("%#x",0) should print 0 not 0x0
2011-06-30 Rich Felkerfix logic in __fwriting
2011-06-30 Rich Felkeradd and consolidate nasty stdio_ext junk
2011-06-30 Rich Felkerimplement the nonstandard GNU function fpurge
2011-06-14 Rich Felkeravoid 64bit warnings when using pointers as entropy...
2011-05-11 Rich Felkerfix the last known rounding bug in floating point printing
2011-05-07 Rich Felkerreduce some ridiculously large spin counts
2011-05-02 Rich Felkerfix fclose return status logic, again
2011-05-02 Rich Felkerfix undefined call order in fclose, possible lost outpu...
2011-05-02 Rich Felkerminor optimization in puts: use inline putc_unlocked...
2011-04-25 Rich Felkerfix 2 eof-related bugs in scanf
2011-04-17 Rich Felkerclean up handling of thread/nothread mode, locking
2011-04-17 Rich Felkerdebloat: use __syscall instead of syscall where possible
2011-04-15 Rich Felkeravoid setting errno when checking for tty
2011-04-15 Rich Felkermake tmpfile slightly more efficient (use unlink syscal...
2011-04-12 Rich Felkerfix printf("%.9g", 1.1) and similar not dropping traili...
2011-04-11 Rich Felkerfix fputwc return value
2011-04-09 Rich Felkerwork around a nasty bug in linux readv syscall
2011-04-05 Rich Felkeradd more legacy functions: setlinebuf and setbuffer
2011-04-05 Rich Felkerfix overflow in printf %N$ argument handling
2011-04-05 Rich Felkerfix various floating point rounding and formatting...
2011-04-04 Rich Felkersimplify vdprintf implementation greatly based on recen...
2011-04-04 Rich Felkeruse a local temp buffer for unbuffered streams in vfprintf
2011-04-02 Rich Felkerdon't disable seeking after first seek failure
2011-04-02 Rich Felkerapparently fseek should not set the error flag on faile...
2011-03-29 Rich Felkerfix tempnam name generation, and a small bug in tmpnam...
2011-03-29 Rich Felkermake tmpfile fail after exceeding max tries.
2011-03-29 Rich Felkerfix tmpnam to generate better names, not depend on...
2011-03-29 Rich Felkerfix messed-up errno if remove fails for a non-EISDIR...
2011-03-29 Rich Felkerlearned something new - remove is supposed to support...
2011-03-29 Rich Felkerrevert some more spin optimizations that turned out...
2011-03-28 Rich Felkerfix getc - the classic error of trying to store EOF...
2011-03-28 Rich Felkermajor stdio overhaul, using readv/writev, plus other...
2011-03-25 Rich Felkerfix all implicit conversion between signed/unsigned...
2011-03-25 Rich Felkersimplify and optimize FILE lock handling
2011-03-25 Rich Felkerfix non-atomicity of puts
2011-03-20 Rich Felkerglobal cleanup to use the new syscall interface
2011-03-18 Rich Felkerimplement [v]swprintf
2011-03-18 Rich Felkerimplement wprintf family of functions
2011-03-16 Rich Felkeroptimize file locking: avoid cache-polluting writes...
2011-03-14 Rich Felkerpartially-written draft of fmemopen, still in #if 0
2011-03-13 Rich Felkerimplement flockfile api, rework stdio locking
2011-02-22 Rich Felkerrewind must clear the error indicator in addition to...
2011-02-21 Rich Felkeravoid referencing address of extern function from vdprintf
2011-02-20 Rich Felkercleanup asprintf stuff
2011-02-20 Rich Felkerfix %n specifier, again. this time it was storing the...
2011-02-16 Rich Felkerfix printf %n specifier - missing breaks had it clobber...
2011-02-15 Rich Felkerfix some pointer signedness issues (this was invalid C)
2011-02-14 Rich Felkercleaning up syscalls in preparation for x86_64 port
2011-02-12 Rich Felkerinitial check-in, version 0.5.0