mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-06 14:05:32 +00:00
ICU-20941 Fix uninitialized values: DerivedComponents' compound0_ and compound1_
This commit is contained in:
parent
1aa0dad8e0
commit
8b48e1862c
1 changed files with 1 additions and 1 deletions
|
@ -658,7 +658,7 @@ class DerivedComponents {
|
|||
UErrorCode status = U_ZERO_ERROR;
|
||||
|
||||
// Holds strings referred to by value0 and value1;
|
||||
bool compound0_, compound1_;
|
||||
bool compound0_ = false, compound1_ = false;
|
||||
CharString value0_, value1_;
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue