mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-08 06:53:45 +00:00
ICU-1941 back off a little on the NULL checking..
X-SVN-Rev: 9883
This commit is contained in:
parent
ef0736d5a1
commit
b7120e2ff7
1 changed files with 1 additions and 1 deletions
|
@ -1744,7 +1744,7 @@ static void TestResourceLevelAliasing(void) {
|
|||
} else {
|
||||
status = U_ZERO_ERROR;
|
||||
}
|
||||
if((tb == NULL) || U_FAILURE(status) ) {
|
||||
if(U_FAILURE(status) ) {
|
||||
log_data_err("err loading tb resource\n");
|
||||
} else {
|
||||
/* testing aliasing to a non existing resource */
|
||||
|
|
Loading…
Add table
Reference in a new issue