mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-06 14:05:32 +00:00
ICU-22549 Limit Normalizer2 Fuzzer for 5K of input
To avoid timeout
This commit is contained in:
parent
1384d9f395
commit
fc6e282d98
1 changed files with 5 additions and 1 deletions
|
@ -1,7 +1,7 @@
|
|||
// © 2023 and later: Unicode, Inc. and others.
|
||||
// License & terms of use: http://www.unicode.org/copyright.html
|
||||
|
||||
// Fuzzer for ICU Calendar.
|
||||
// Fuzzer for ICU Normalizer2.
|
||||
|
||||
#include <cstring>
|
||||
|
||||
|
@ -10,6 +10,10 @@
|
|||
extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size) {
|
||||
uint16_t rnd;
|
||||
UChar32 char1, char2;
|
||||
// To avoid timeout, limit the input to 5000 bytes
|
||||
if (size > 5000) {
|
||||
size = 5000;
|
||||
}
|
||||
if (size < sizeof(rnd) + sizeof(char1) + sizeof(char2)) return 0;
|
||||
icu::StringPiece fuzzData(reinterpret_cast<const char *>(data), size);
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue