]> git.ipfire.org Git - thirdparty/glibc.git/commit
manual: Various fixes to the mbstouwcs example, and mbrtowc update
authorFlorian Weimer <fweimer@redhat.com>
Thu, 5 Apr 2018 10:52:19 +0000 (12:52 +0200)
committerFlorian Weimer <fweimer@redhat.com>
Thu, 5 Apr 2018 10:52:19 +0000 (12:52 +0200)
commitcf138b0c83b3210990b29772e2af5982fb0e3c26
tree075a78aa20aec46bf3d989d28642826bc2989bee
parent0f339252697e6dcfc9e00be6cd8272d4260b90d2
manual: Various fixes to the mbstouwcs example, and mbrtowc update

The example did not work because the null byte was not converted, and
mbrtowc was called with a zero-length input string.  This results in a
(size_t) -2 return value, so the function always returns NULL.

The size computation for the heap allocation of the result was
incorrect because it did not deal with integer overflow.

Error checking was missing, and the allocated memory was not freed on
error paths.  All error returns now set errno.  (Note that there is an
assumption that free does not clobber errno.)

The slightly unportable comparision against (size_t) -2 to catch both
(size_t) -1 and (size_t) -2 return values is gone as well.

A null wide character needs to be stored in the result explicitly, to
terminate it.

The description in the manual is updated to deal with these finer
points.  The (size_t) -2 behavior (consuming the input bytes) matches
what is specified in ISO C11.
ChangeLog
manual/charset.texi
manual/examples/mbstouwcs.c