mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-06 14:05:32 +00:00
ICU-22549 Fix fuzzer to call Locale with null-terminiate string
This commit is contained in:
parent
cfba9a8caf
commit
3f054adaf3
1 changed files with 3 additions and 1 deletions
|
@ -74,7 +74,9 @@ extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size) {
|
|||
status = U_ZERO_ERROR;
|
||||
TestPluralRulesWithLocale(locale, number, dbl, type, status);
|
||||
|
||||
icu::Locale locale2 = icu::Locale(fuzzData.data());
|
||||
std::string str(fuzzData.data(), fuzzData.size()); // ensure null-terminate
|
||||
// by std::string c_str
|
||||
icu::Locale locale2(str.c_str());
|
||||
|
||||
status = U_ZERO_ERROR;
|
||||
TestPluralRulesWithLocale(locale2, number, dbl, type, status);
|
||||
|
|
Loading…
Add table
Reference in a new issue