ICU-23035 Fix bound check at u_strToPunycode

This commit is contained in:
Burkov Egor 2025-02-03 17:19:55 +03:00 committed by Markus Scherer
parent db42c87936
commit 40c325322e

View file

@ -193,7 +193,7 @@ u_strToPunycode(const char16_t *src, int32_t srcLength,
return 0;
}
if(src==nullptr || srcLength<-1 || (dest==nullptr && destCapacity!=0)) {
if(src==nullptr || srcLength<-1 || destCapacity<0 || (dest==nullptr && destCapacity!=0)) {
*pErrorCode=U_ILLEGAL_ARGUMENT_ERROR;
return 0;
}