Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 23 Aug 2016 00:00:06 +0000 (UTC)
From:      "Andrey A. Chernov" <ache@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-10@freebsd.org
Subject:   svn commit: r304648 - stable/10/lib/libc/stdio
Message-ID:  <201608230000.u7N006pv080202@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: ache
Date: Tue Aug 23 00:00:06 2016
New Revision: 304648
URL: https://svnweb.freebsd.org/changeset/base/304648

Log:
  Direct commit, equal to MFC part of r295632 which is not planned for
  MFC at whole.
  Set __SERR on  __slbexpand() errors.

Modified:
  stable/10/lib/libc/stdio/fgetln.c

Modified: stable/10/lib/libc/stdio/fgetln.c
==============================================================================
--- stable/10/lib/libc/stdio/fgetln.c	Mon Aug 22 22:51:10 2016	(r304647)
+++ stable/10/lib/libc/stdio/fgetln.c	Tue Aug 23 00:00:06 2016	(r304648)
@@ -159,6 +159,7 @@ fgetln(FILE *fp, size_t *lenp)
 
 error:
 	*lenp = 0;		/* ??? */
+	fp->_flags |= __SERR;
 	FUNLOCKFILE(fp);
 	return (NULL);		/* ??? */
 }



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201608230000.u7N006pv080202>