Created attachment 1441 [details] Test for broken mbrtowc The standards require mbrtowc to store an output value in the provided wchar_t pointer in all non-error conditions. But uClibc does not do this when converting the terminating zero of a string, instead leaving whatever garbage was previously there alone. This causes GNU tar 1.23 to assertion-fail in some cases. A simple demonstration is attached.
Fixed in 86b4bf7d3194a06281f053be341031d9196874c2 Thanks for the report!