diff options
-rw-r--r-- | src/lib/icu/Collate.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/icu/Collate.cxx b/src/lib/icu/Collate.cxx index c863e7e2a..d3926cc3b 100644 --- a/src/lib/icu/Collate.cxx +++ b/src/lib/icu/Collate.cxx @@ -83,7 +83,7 @@ UCharFromUTF8(const char *src, int32_t *dest_length) size_t dest_capacity = src_length + 1; UChar *dest = new UChar[dest_capacity]; - UErrorCode error_code; + UErrorCode error_code = U_ZERO_ERROR; u_strFromUTF8(dest, dest_capacity, dest_length, src, src_length, |