After read errors, fgetln(3) sometimes succeeded (returning non-NULL)
authorschwarze <schwarze@openbsd.org>
Thu, 25 Aug 2016 19:21:33 +0000 (19:21 +0000)
committerschwarze <schwarze@openbsd.org>
Thu, 25 Aug 2016 19:21:33 +0000 (19:21 +0000)
commita29ed0e9c9de7c24a3629c01cf943e9e9838bab2
tree3b332231236dca4fc199292794f067aab829c6ec
parent9068596c3d9233a974cc00827b759a33a4a838d4
After read errors, fgetln(3) sometimes succeeded (returning non-NULL)
and failed (setting errno and ferror(3)) both at the same time.
That's a bad idea in general, and here in particular since
returning partial lines was neither reliable (sometimes, you
got NULL anyway) nor predictable (almost always, the line would
be truncated long before the actual read error).
Instead, on read failure, fail properly and always return NULL.
Issue found in a discussion with Andrey Chernov <ache at freebsd dot org>
who finally agreed to move FreeBSD into the same direction.
The fix is joint work with and OK by millert@.
lib/libc/stdio/fgetln.c