From 192169052ceeb7fac5ff051fe0e836d3b2ddb7f7 Mon Sep 17 00:00:00 2001 From: Eric Biggers Date: Thu, 11 Apr 2013 10:28:21 -0500 Subject: [PATCH 1/1] Add missing iconv_cleanup()s --- src/encoding.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/encoding.c b/src/encoding.c index 7d260046..31e6913a 100644 --- a/src/encoding.c +++ b/src/encoding.c @@ -369,5 +369,7 @@ iconv_global_cleanup() #if !TCHAR_IS_UTF16LE iconv_cleanup(&iconv_utf16le_to_tstr); iconv_cleanup(&iconv_tstr_to_utf16le); + iconv_cleanup(&iconv_utf16le_to_utf8); + iconv_cleanup(&iconv_utf8_to_utf16le); #endif } -- 2.43.0