ICU-22549 Fix incorrect pointer

Remove the adjustment of data pointer to avoid buffer-overflow
Fix bug https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=65632
This commit is contained in:
Frank Tang 2024-01-08 16:34:04 -08:00 committed by Frank Yung-Fong Tang
parent 906093f31b
commit 23d1fc5989

View file

@ -39,9 +39,8 @@ extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size) {
}
std::unique_ptr<char16_t[]> compbuff1(new char16_t[size/4]);
std::memcpy(compbuff1.get(), data, (size/4)*2);
data = data + size/2;
std::unique_ptr<char16_t[]> compbuff2(new char16_t[size/4]);
std::memcpy(compbuff2.get(), data, (size/4)*2);
std::memcpy(compbuff2.get(), data + size/2, (size/4)*2);
icu::LocalPointer<icu::Collator> fuzzCollator(