ICU-4102 Improve multi-level aliasing with fallbacks.

We only need to know that the length of the string is >0.

X-SVN-Rev: 16904
This commit is contained in:
George Rhoten 2004-12-02 07:27:34 +00:00
parent 380f90589e
commit 65e90ef307

View File

@ -1330,7 +1330,7 @@ ures_getByKeyWithFallback(const UResourceBundle *resB,
helper = init_resb_result(&(dataEntry->fData), res, inKey, -1, dataEntry, resB, 0, helper, status);
dataEntry = helper->fData;
}
} while(uprv_strlen(myPath));
} while(*myPath); /* Continue until the whole path is consumed */
}
}
/*const ResourceData *rd = getFallbackData(resB, &key, &realData, &res, status);*/