Treat empty encoding as "C" encoding

This commit is contained in:
Andrey A. Chernov 1995-10-23 20:20:11 +00:00
parent 377da8e867
commit 34d08e870e

View File

@ -77,7 +77,7 @@ _xpg4_setrunelocale(encoding)
/*
* The "C" and "POSIX" locale are always here.
*/
if (!strcmp(encoding, "C") || !strcmp(encoding, "POSIX")) {
if (!*encoding || !strcmp(encoding, "C") || !strcmp(encoding, "POSIX")) {
_CurrentRuneLocale = &_DefaultRuneLocale;
return(0);
}