From f97fc86fab1078c920ff3468eaf72fa205aefd60 Mon Sep 17 00:00:00 2001 From: kichik Date: Mon, 5 May 2014 02:21:49 +0000 Subject: [PATCH] i think this is a bug... git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@6466 212acab6-be3b-0410-9dea-997c60f758d6 --- Source/build.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/Source/build.cpp b/Source/build.cpp index 9c3b0e94..34940b63 100644 --- a/Source/build.cpp +++ b/Source/build.cpp @@ -541,6 +541,7 @@ char* convert_processed_string_to_ansi(char *out, const TCHAR *in, WORD codepage if (i == _T('\0')) break; else if (i == NS_SKIP_CODE) + // BUGBUG shouldn't the escaped code be converted from UTF-8 to codepage as well? *out++ = (char) *in++; // simply copy escaped code (01..04) else {