implement a private state for the uchar.h functions
authorJens Gustedt <Jens.Gustedt@inria.fr>
Sun, 9 Nov 2014 10:18:08 +0000 (11:18 +0100)
committerRich Felker <dalias@aerifal.cx>
Sat, 15 Nov 2014 20:08:03 +0000 (15:08 -0500)
commit941644e98c3d05761b4639a8ae5afacd8586d1b9
tree07b5a816a539376dde70db9ffcfb739bb59bfcf3
parentb91cdbe2bc8b626aa04dc6e3e84345accf34e4b1
implement a private state for the uchar.h functions

The C standard is imperative on that:

  7.28.1 ... If ps is a null pointer, each function uses its own internal
  mbstate_t object instead, which is initialized at program startup to
  the initial conversion state;

and these functions are also not supposed to implicitly use the state of
the wchar.h functions:

  7.29.6.3 ... The implementation behaves as if no library function calls
  these functions with a null pointer for ps.

Previously this resulted in two bugs.

 - The functions c16rtomb and mbrtoc16 would crash when called with ps
   set to null.

 - The function mbrtoc32 used the private state of mbrtowc, which it
   is not allowed to do.
src/multibyte/c16rtomb.c
src/multibyte/mbrtoc16.c
src/multibyte/mbrtoc32.c