Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/lib/libc/stdio From OpenBSD:



details:   https://anonhg.NetBSD.org/src/rev/8f37412b5c1e
branches:  trunk
changeset: 817487:8f37412b5c1e
user:      christos <christos%NetBSD.org@localhost>
date:      Mon Aug 22 06:11:39 2016 +0000

description:
>From OpenBSD:
bugfix: when fgetwc(3) fails, fgetwln(3) must fail as well;

diffstat:

 lib/libc/stdio/fgetwln.c |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (27 lines):

diff -r e8f265045790 -r 8f37412b5c1e lib/libc/stdio/fgetwln.c
--- a/lib/libc/stdio/fgetwln.c  Mon Aug 22 04:15:58 2016 +0000
+++ b/lib/libc/stdio/fgetwln.c  Mon Aug 22 06:11:39 2016 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: fgetwln.c,v 1.5 2012/03/15 18:22:30 christos Exp $     */
+/*     $NetBSD: fgetwln.c,v 1.6 2016/08/22 06:11:39 christos Exp $     */
 
 /*-
  * Copyright (c) 2002-2004 Tim J. Robbins.
@@ -31,7 +31,7 @@
 #if 0
 __FBSDID("$FreeBSD: src/lib/libc/stdio/fgetwln.c,v 1.2 2004/08/06 17:00:09 tjr Exp $");
 #else
-__RCSID("$NetBSD: fgetwln.c,v 1.5 2012/03/15 18:22:30 christos Exp $");
+__RCSID("$NetBSD: fgetwln.c,v 1.6 2016/08/22 06:11:39 christos Exp $");
 #endif
 #endif /* LIBC_SCCS and not lint */
 
@@ -94,7 +94,7 @@
                if (wc == L'\n')
                        break;
        }
-       if (len == 0)
+       if (len == 0 || fp->flags & __SERR)
                goto error;
 
        FUNLOCKFILE(fp);



Home | Main Index | Thread Index | Old Index