From 4713007464ab635e84a733cae428ffb32ab8ad61 Mon Sep 17 00:00:00 2001 From: George Rhoten Date: Fri, 9 Aug 2002 21:18:31 +0000 Subject: [PATCH] ICU-2091 Only need to get the data directory once X-SVN-Rev: 9657 --- 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 182e0f0d0d..9e62436fd0 100644 --- a/icu4c/source/common/udata.c +++ b/icu4c/source/common/udata.c @@ -1024,7 +1024,7 @@ doOpenChoice(const char *path, const char *type, const char *name, /* #1 look in ind. files ================================== */ /* init path iterator for individual files */ - udata_pathiter_init(&iter, u_getDataDirectory(), path, tocEntrySuffix, FALSE); + udata_pathiter_init(&iter, dataPath, path, tocEntrySuffix, FALSE); while((pathBuffer = udata_pathiter_next(&iter, &pathLen))) {