diff options
author | Jan Vorlicek <janvorli@microsoft.com> | 2015-11-25 23:33:01 +0100 |
---|---|---|
committer | Jan Vorlicek <janvorli@microsoft.com> | 2015-11-25 23:33:01 +0100 |
commit | 59fefe83a1cc3136ff50faf6ef7c243dc5e36065 (patch) | |
tree | 4f709f319f3ba1426a47797ccf6d29aefc21c306 | |
parent | d2727e3e580974d594237d7f414bcc563ab12af3 (diff) | |
parent | 887b6e638a277ec97e80abc2f32e23f3aa5953a4 (diff) | |
download | coreclr-59fefe83a1cc3136ff50faf6ef7c243dc5e36065.tar.gz coreclr-59fefe83a1cc3136ff50faf6ef7c243dc5e36065.tar.bz2 coreclr-59fefe83a1cc3136ff50faf6ef7c243dc5e36065.zip |
Merge pull request #2167 from steveharter/StdArg
Fix unicode input on the command line
-rw-r--r-- | src/dlls/mscoree/unixinterface.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dlls/mscoree/unixinterface.cpp b/src/dlls/mscoree/unixinterface.cpp index 013b4451d9..66e35248dd 100644 --- a/src/dlls/mscoree/unixinterface.cpp +++ b/src/dlls/mscoree/unixinterface.cpp @@ -62,7 +62,7 @@ static LPCWSTR StringToUnicode(LPCSTR str) LPWSTR result = new (nothrow) WCHAR[length]; ASSERTE_ALL_BUILDS(result != NULL); - length = MultiByteToWideChar(CP_ACP, 0, str, length, result, length); + length = MultiByteToWideChar(CP_ACP, 0, str, -1, result, length); ASSERTE_ALL_BUILDS(length != 0); return result; |