From 1395794923e98e75f8579a567fc5c961796db7c2 Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Mon, 12 May 2014 14:13:09 +0200 Subject: icu/Collate: initialize error_code Fixes the broken "search" command. --- src/lib/icu/Collate.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/lib/icu/Collate.cxx') 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, -- cgit v1.2.3