summaryrefslogtreecommitdiff
path: root/src/stdio/vfscanf.c
AgeCommit message (Expand)AuthorFilesLines
2020-07-02vfscanf: fix possible invalid free due to uninitialized variable useJulien Ramseier1-1/+1
2020-04-17fix undefined behavior in scanf coreRich Felker1-0/+3
2017-09-04handle whitespace before %% in scanfBartosz Brachaczek1-3/+7
2014-01-08add __isoc99_vfscanf weak alias to vfscanfSzabolcs Nagy1-0/+2
2013-12-12include cleanups: remove unused headers and add feature test macrosSzabolcs Nagy1-4/+1
2013-08-31avoid crash in scanf when invalid %m format is encounteredRich Felker1-0/+2
2013-07-20fix uninitialized/stale use of alloc (%m modifier) flag in scanfRich Felker1-0/+2
2013-06-22fix scanf %c conversion wrongly storing a terminating null byteRich Felker1-2/+4
2013-06-05implement the 'm' (malloc) modifier for scanfRich Felker1-22/+48
2013-06-04simplify some logic in scanf and remove redundant invalid-format checkRich Felker1-18/+8
2013-06-04refactor scanf core to use common code path for all string formatsRich Felker1-85/+52
2012-11-08clean up stdio_impl.hRich Felker1-1/+1
2012-09-06use restrict everywhere it's required by c99 and/or posix 2008Rich Felker1-1/+1
2012-06-07fix scanf bug reading literals after width-limited fieldRich Felker1-0/+1
2012-04-19fix really bad breakage in strtol, etc.: failure to accept leading spacesRich Felker1-1/+1
2012-04-17fix over-read in %ls with non-wide scanfRich Felker1-0/+1
2012-04-17fix some bugs in scanf %[ handling detected while writing the wide versionRich Felker1-4/+4
2012-04-17avoid null pointer dereference on %*p fields in scanfRich Felker1-1/+1
2012-04-16new scanf implementation and corresponding integer parser/converterRich Felker1-16/+322
2011-03-28major stdio overhaul, using readv/writev, plus other changesRich Felker1-10/+3
2011-02-12initial check-in, version 0.5.0v0.5.0Rich Felker1-0/+43