svn commit: r301245 - stable/10/lib/libc/locale

Andrey A. Chernov ache at FreeBSD.org
Fri Jun 3 07:35:01 UTC 2016


Author: ache
Date: Fri Jun  3 07:34:59 2016
New Revision: 301245
URL: https://svnweb.freebsd.org/changeset/base/301245

Log:
  For EILSEQ case in mbsnrtowcs() and wcsnrtombs() update src to point to
  the character after the one this conversion stopped at.
  
  PR:     209907
  Submitted by:   Roel Standaert <roel at abittechnical.com> (partially)

Modified:
  stable/10/lib/libc/locale/ascii.c
  stable/10/lib/libc/locale/none.c
Directory Properties:
  stable/10/   (props changed)

Modified: stable/10/lib/libc/locale/ascii.c
==============================================================================
--- stable/10/lib/libc/locale/ascii.c	Fri Jun  3 07:24:41 2016	(r301244)
+++ stable/10/lib/libc/locale/ascii.c	Fri Jun  3 07:34:59 2016	(r301245)
@@ -143,6 +143,7 @@ _ascii_mbsnrtowcs(wchar_t * __restrict d
 	nchr = 0;
 	while (len-- > 0 && nms-- > 0) {
 		if (*s & 0x80) {
+			*src = s;
 			errno = EILSEQ;
 			return ((size_t)-1);
 		}
@@ -177,6 +178,7 @@ _ascii_wcsnrtombs(char * __restrict dst,
 	nchr = 0;
 	while (len-- > 0 && nwc-- > 0) {
 		if (*s < 0 || *s > 127) {
+			*src = s;
 			errno = EILSEQ;
 			return ((size_t)-1);
 		}

Modified: stable/10/lib/libc/locale/none.c
==============================================================================
--- stable/10/lib/libc/locale/none.c	Fri Jun  3 07:24:41 2016	(r301244)
+++ stable/10/lib/libc/locale/none.c	Fri Jun  3 07:34:59 2016	(r301245)
@@ -172,6 +172,7 @@ _none_wcsnrtombs(char * __restrict dst, 
 	nchr = 0;
 	while (len-- > 0 && nwc-- > 0) {
 		if (*s < 0 || *s > UCHAR_MAX) {
+			*src = s;
 			errno = EILSEQ;
 			return ((size_t)-1);
 		}


More information about the svn-src-all mailing list