about summary refs log tree commit diff
path: root/src/stdio/vfscanf.c
Commit message (Expand)AuthorAgeFilesLines
* vfscanf: fix possible invalid free due to uninitialized variable useJulien Ramseier2020-07-021-1/+1
* fix undefined behavior in scanf coreRich Felker2020-04-171-0/+3
* handle whitespace before %% in scanfBartosz Brachaczek2017-09-041-3/+7
* add __isoc99_vfscanf weak alias to vfscanfSzabolcs Nagy2014-01-081-0/+2
* include cleanups: remove unused headers and add feature test macrosSzabolcs Nagy2013-12-121-4/+1
* avoid crash in scanf when invalid %m format is encounteredRich Felker2013-08-311-0/+2
* fix uninitialized/stale use of alloc (%m modifier) flag in scanfRich Felker2013-07-201-0/+2
* fix scanf %c conversion wrongly storing a terminating null byteRich Felker2013-06-221-2/+4
* implement the 'm' (malloc) modifier for scanfRich Felker2013-06-051-22/+48
* simplify some logic in scanf and remove redundant invalid-format checkRich Felker2013-06-041-18/+8
* refactor scanf core to use common code path for all string formatsRich Felker2013-06-041-85/+52
* clean up stdio_impl.hRich Felker2012-11-081-1/+1
* use restrict everywhere it's required by c99 and/or posix 2008Rich Felker2012-09-061-1/+1
* fix scanf bug reading literals after width-limited fieldRich Felker2012-06-071-0/+1
* fix really bad breakage in strtol, etc.: failure to accept leading spacesRich Felker2012-04-191-1/+1
* fix over-read in %ls with non-wide scanfRich Felker2012-04-171-0/+1
* fix some bugs in scanf %[ handling detected while writing the wide versionRich Felker2012-04-171-4/+4
* avoid null pointer dereference on %*p fields in scanfRich Felker2012-04-171-1/+1
* new scanf implementation and corresponding integer parser/converterRich Felker2012-04-161-16/+322
* major stdio overhaul, using readv/writev, plus other changesRich Felker2011-03-281-10/+3
* initial check-in, version 0.5.0 v0.5.0Rich Felker2011-02-121-0/+43