diff options
author | Thierry Crozat | 2019-11-06 23:50:24 +0000 |
---|---|---|
committer | Thierry Crozat | 2019-11-08 20:43:25 +0000 |
commit | 8b586ed4189ed58e43d77f7307d3f2b8f30ea20a (patch) | |
tree | 377c1447fb15872ba934f428b6c7cdf45eb7546e /backends | |
parent | 4b21711ca40b7f1a5a43111a455cf0ce6eef13e1 (diff) | |
download | scummvm-rg350-8b586ed4189ed58e43d77f7307d3f2b8f30ea20a.tar.gz scummvm-rg350-8b586ed4189ed58e43d77f7307d3f2b8f30ea20a.tar.bz2 scummvm-rg350-8b586ed4189ed58e43d77f7307d3f2b8f30ea20a.zip |
WIN32: Fix free being used on arrays allocated with new
Diffstat (limited to 'backends')
-rw-r--r-- | backends/platform/sdl/win32/win32.cpp | 28 |
1 files changed, 21 insertions, 7 deletions
diff --git a/backends/platform/sdl/win32/win32.cpp b/backends/platform/sdl/win32/win32.cpp index e7dc2af019..e52525e1ae 100644 --- a/backends/platform/sdl/win32/win32.cpp +++ b/backends/platform/sdl/win32/win32.cpp @@ -459,9 +459,6 @@ char *OSystem_Win32::convertEncoding(const char* to, const char *from, const cha } // Add ending zeros - char *wString = (char *) calloc(sizeof(char), length + 2); - memcpy(wString, string, length); - WCHAR *tmpStr; if (Common::String(from).hasPrefixIgnoreCase("utf-16")) { // Allocate space for string and 2 ending zeros @@ -474,11 +471,20 @@ char *OSystem_Win32::convertEncoding(const char* to, const char *from, const cha } memcpy(tmpStr, string, length); } else { - tmpStr = Win32::ansiToUnicode(string, Win32::getCodePageId(from)); + // Win32::ansiToUnicode uses new to allocate the memory. We need to copy it into an array + // allocated with malloc as it is going to be freed using free. + WCHAR *tmpStr2 = Win32::ansiToUnicode(string, Win32::getCodePageId(from)); + if (!tmpStr2) { + if (newString != nullptr) + free(newString); + return nullptr; + } + size_t size = wcslen(tmpStr2) + 1; // +1 for the terminating null wchar + tmpStr = (WCHAR *) malloc(sizeof(WCHAR) * size); + memcpy(tmpStr, tmpStr2, sizeof(WCHAR) * size); + delete[] tmpStr2; } - free(wString); - if (newString != nullptr) free(newString); @@ -492,7 +498,15 @@ char *OSystem_Win32::convertEncoding(const char* to, const char *from, const cha } else { result = Win32::unicodeToAnsi(tmpStr, Win32::getCodePageId(to)); free(tmpStr); - return result; + if (!result) + return nullptr; + // Win32::unicodeToAnsi uses new to allocate the memory. We need to copy it into an array + // allocated with malloc as it is going to be freed using free. + size_t size = strlen(result) + 1; + char *resultCopy = (char *) malloc(sizeof(char) * size); + memcpy(resultCopy, result, sizeof(char) * size); + delete[] result; + return resultCopy; } } |