svn commit: r305370 - stable/11/lib/libc/stdio
Andrey A. Chernov
ache at FreeBSD.org
Sun Sep 4 00:35:57 UTC 2016
Author: ache
Date: Sun Sep 4 00:35:55 2016
New Revision: 305370
URL: https://svnweb.freebsd.org/changeset/base/305370
Log:
MFC r305219
If error happens, don't overwrite original errno comes from __mbrtowc()
and __srefill().
Modified:
stable/11/lib/libc/stdio/fgetwc.c
Directory Properties:
stable/11/ (props changed)
Modified: stable/11/lib/libc/stdio/fgetwc.c
==============================================================================
--- stable/11/lib/libc/stdio/fgetwc.c Sun Sep 4 00:34:15 2016 (r305369)
+++ stable/11/lib/libc/stdio/fgetwc.c Sun Sep 4 00:35:55 2016 (r305370)
@@ -84,9 +84,10 @@ __fgetwc_mbs(FILE *fp, mbstate_t *mbs, i
return (WEOF);
do {
nconv = l->__mbrtowc(&wc, fp->_p, fp->_r, mbs);
- if (nconv == (size_t)-1)
- break;
- else if (nconv == (size_t)-2)
+ if (nconv == (size_t)-1) {
+ fp->_flags |= __SERR;
+ return (WEOF);
+ } else if (nconv == (size_t)-2)
continue;
else if (nconv == 0) {
fp->_p++;
@@ -100,7 +101,9 @@ __fgetwc_mbs(FILE *fp, mbstate_t *mbs, i
return (wc);
}
} while (__srefill(fp) == 0);
- fp->_flags |= __SERR;
- errno = EILSEQ;
+ if (__sfeof(fp)) {
+ fp->_flags |= __SERR;
+ errno = EILSEQ;
+ }
return (WEOF);
}
More information about the svn-src-stable
mailing list