[PATCH v2][BZ #12685] Allow arbitrary number of modes in fopen.
Andreas Schwab
schwab@suse.de
Tue May 14 12:31:00 GMT 2013
OndÅej BÃlka <neleai@seznam.cz> writes:
> diff --git a/libio/fileops.c b/libio/fileops.c
> index 61b61b3..50c3eb2 100644
> --- a/libio/fileops.c
> +++ b/libio/fileops.c
> @@ -286,12 +286,10 @@ _IO_new_file_fopen (fp, filename, mode, is32not64)
> #ifdef _LIBC
> last_recognized = mode;
> #endif
> - for (i = 1; i < 7; ++i)
> + while (*mode && *mode != ',')
> {
> switch (*++mode)
That reads mode[1], but the loop conditions tests mode[0].
Andreas.
--
Andreas Schwab, SUSE Labs, schwab@suse.de
GPG Key fingerprint = 0196 BAD8 1CE9 1970 F4BE 1748 E4D4 88E3 0EEA B9D7
"And now for something completely different."
More information about the Libc-alpha
mailing list