Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(532)

Unified Diff: source/common/locid.cpp

Issue 796153002: Fix for a check failure in ftp listing (Closed) Base URL: https://chromium.googlesource.com/chromium/deps/icu.git@master
Patch Set: desc. change Created 6 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: source/common/locid.cpp
diff --git a/source/common/locid.cpp b/source/common/locid.cpp
index 84cb98675c2f11e04700793404dd26659e79081d..54d5cdbf3f54fb52c50f68cbb679b1e50a4f7352 100644
--- a/source/common/locid.cpp
+++ b/source/common/locid.cpp
@@ -484,6 +484,13 @@ Locale& Locale::init(const char* localeID, UBool canonicalize)
/* preset all fields to empty */
language[0] = script[0] = country[0] = 0;
+ // Need to reset baseName. Otherwise, when a Locale object created with
+ // the default constructor is changed with setFromPOSIXID() later
+ // (e.g. locales obtained with getAvailableLocales()),
+ // baseName will be still that of the default locale instead of one
+ // corresponding to localeID.
+ baseName = NULL;
+
// "canonicalize" the locale ID to ICU/Java format
err = U_ZERO_ERROR;
length = canonicalize ?
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698