mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-06 05:55:35 +00:00
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:
parent
906093f31b
commit
23d1fc5989
1 changed files with 1 additions and 2 deletions
|
@ -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(
|
||||
|
|
Loading…
Add table
Reference in a new issue