From 9b33ab27346cc5048e34a6cee7dd0c05da059465 Mon Sep 17 00:00:00 2001 From: Markus Scherer Date: Mon, 5 Jun 2000 17:24:34 +0000 Subject: [PATCH] ICU-421 detect correctly if there is a basename X-SVN-Rev: 1564 --- icu4c/source/common/udata.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/icu4c/source/common/udata.c b/icu4c/source/common/udata.c index 69b4e96f10..fa3e4dfdcb 100644 --- a/icu4c/source/common/udata.c +++ b/icu4c/source/common/udata.c @@ -966,7 +966,7 @@ doOpenChoice(const char *path, const char *type, const char *name, } /* try path+basename+"_"+entryName first */ - if(inBasename!=path) { + if(*inBasename!=0) { suffix=strcpy_returnEnd(basename, inBasename); *suffix++='_'; uprv_strcpy(suffix, tocEntryName);