Skip to content

Commit

Permalink
ICU-22721 Set all fields in initializer (-Wmissing-field-initializers).
Browse files Browse the repository at this point in the history
  • Loading branch information
roubert authored and FrankYFTang committed Jun 18, 2024
1 parent 471c2ce commit e6674c7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion icu4c/source/test/fuzzer/uregex_open_fuzzer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
IcuEnvironment* env = new IcuEnvironment();

extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size) {
UParseError pe = { 0 };
UParseError pe = { 0, 0, {0}, {0} };
UErrorCode status = U_ZERO_ERROR;

URegularExpression* re = uregex_open(reinterpret_cast<const char16_t*>(data),
Expand Down

0 comments on commit e6674c7

Please sign in to comment.