Files
semi-libc/src/multibyte
Rich Felker 716745e00e fix aliasing-based undefined behavior in mbsrtowcs
mbsrtowcs contains "vectorized" loops to quickly step over bytes
without the high bit set; these have undefined behavior by virtue of
aliasing uint32_t over top of char data for the accesses.

commit 4d0a82170a fixed the
corresponding usage in string functions by using the may_alias
attribute conditional on __GNUC__ and disabled the vectorized code in
its absence. do the same for mbsrtowcs.
2019-10-13 17:21:36 -04:00
..
2018-09-12 14:34:37 -04:00
2013-04-04 14:53:53 -04:00
2013-04-04 14:55:42 -04:00