mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-05 05:25:34 +00:00
ICU-22929 Improve fuzzer to find leak from udat_open
Try to find out what cause ICU-23008. Use ICU-22929 as bug number to improve fuzzer to find the problem. According to ICU-23008 bug report, the leak of DecimalFormatSymbols can be reach by udat_open when the style is UDAT_PATTERN
This commit is contained in:
parent
f8aa68b0c1
commit
13a5e29644
1 changed files with 6 additions and 0 deletions
|
@ -90,5 +90,11 @@ extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size) {
|
|||
icu::DateFormat::createDateTimeInstance(dateStyle, timeStyle, locale2));
|
||||
df.reset(
|
||||
icu::DateFormat::createDateTimeInstance(dateStyle2, timeStyle2, locale2));
|
||||
|
||||
UDateFormat* udf = udat_open(UDAT_PATTERN, UDAT_PATTERN, str.c_str(), nullptr, 0,
|
||||
skeleton.getBuffer(), skeleton.length(), &status);
|
||||
if (udf && U_SUCCESS(status)) {
|
||||
udat_close(udf);
|
||||
}
|
||||
return EXIT_SUCCESS;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue