glibc/libio/bits
Siddhesh Poyarekar ae5062201d ungetc: Guarantee single char pushback
The C standard requires that ungetc guarantees at least one pushback,
but the malloc call to allocate the pushback buffer could fail, thus
violating that requirement.  Fix this by adding a single byte pushback
buffer in the FILE struct that the pushback can fall back to if malloc
fails.

The side-effect is that if the initial malloc fails and the 1-byte
fallback buffer is used, future resizing (if it succeeds) will be
2-bytes, 4-bytes and so on, which is suboptimal but it's after a malloc
failure, so maybe even desirable.

A future optimization here could be to have the pushback code use the
single byte buffer first and only fall back to malloc for subsequent
calls.

Signed-off-by: Siddhesh Poyarekar <siddhesh@sourceware.org>
Reviewed-by: Maciej W. Rozycki <macro@redhat.com>
2024-12-17 17:42:55 -05:00
..
types ungetc: Guarantee single char pushback 2024-12-17 17:42:55 -05:00
stdio-ldbl.h Refer to C23 in place of C2X in glibc 2024-02-01 11:02:01 +00:00
stdio.h Update copyright dates with scripts/update-copyrights 2024-01-01 10:53:40 -08:00
stdio2-decl.h Update copyright dates with scripts/update-copyrights 2024-01-01 10:53:40 -08:00
stdio2.h Fix name space violation in fortify wrappers (bug 32052) 2024-08-05 16:49:58 +02:00