ICU-22214 Fix set pointer to false in sprpdata.c

This commit is contained in:
Victor Chang 2022-11-28 15:25:29 +00:00 committed by Markus Scherer
parent 3654e945b6
commit 194236a1b4

View file

@ -141,8 +141,8 @@ getValues(uint32_t result, int32_t* value, UBool* isIndex){
}
if((result>>2) == _SPREP_MAX_INDEX_VALUE){
type = USPREP_DELETE;
isIndex =false;
value = 0;
*isIndex = false;
*value = 0;
}
}
return type;