mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-07 06:25:30 +00:00
ICU-11917 fix return from void function
X-SVN-Rev: 37994
This commit is contained in:
parent
9d080ee08a
commit
949c45546a
1 changed files with 1 additions and 1 deletions
|
@ -313,7 +313,7 @@ static void uplug_queryPlug(UPlugData *plug, UErrorCode *status) {
|
|||
|
||||
static void uplug_loadPlug(UPlugData *plug, UErrorCode *status) {
|
||||
if(U_FAILURE(*status)) {
|
||||
return NULL;
|
||||
return;
|
||||
}
|
||||
if(!plug->awaitingLoad || (plug->level < UPLUG_LEVEL_LOW) ) { /* shouldn't happen. Plugin hasn'tbeen loaded yet.*/
|
||||
*status = U_INTERNAL_PROGRAM_ERROR;
|
||||
|
|
Loading…
Add table
Reference in a new issue