summaryrefslogtreecommitdiff
path: root/deps/icu-small/source/common/serv.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'deps/icu-small/source/common/serv.cpp')
-rw-r--r--deps/icu-small/source/common/serv.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/deps/icu-small/source/common/serv.cpp b/deps/icu-small/source/common/serv.cpp
index 35e362b71a..2fb35bd1a5 100644
--- a/deps/icu-small/source/common/serv.cpp
+++ b/deps/icu-small/source/common/serv.cpp
@@ -702,9 +702,9 @@ ICUService::getDisplayName(const UnicodeString& id, UnicodeString& result, const
}
// fallback
- UErrorCode status = U_ZERO_ERROR;
+ status = U_ZERO_ERROR;
ICUServiceKey* fallbackKey = createKey(&id, status);
- while (fallbackKey->fallback()) {
+ while (fallbackKey != NULL && fallbackKey->fallback()) {
UnicodeString us;
fallbackKey->currentID(us);
f = (ICUServiceFactory*)map->get(us);