The last argument to MultiByteToWideChar is wide character count and
not the buffer size in bytes. Fixed all places where it was wrong.
diff --git a/dlls/winmm/message16.c b/dlls/winmm/message16.c
index 5a00851..3300103 100644
--- a/dlls/winmm/message16.c
+++ b/dlls/winmm/message16.c
@@ -3452,7 +3452,7 @@
UnMapLS( lParam );
if (msip16) {
MultiByteToWideChar(CP_ACP, 0, MapSL(msip16->lpstrReturn), msip16->dwRetSize,
- msip32w->lpstrReturn, msip32w->dwRetSize);
+ msip32w->lpstrReturn, msip32w->dwRetSize/sizeof(WCHAR));
UnMapLS( msip16->lpstrReturn );
HeapFree( GetProcessHeap(), 0, MapSL(msip16->lpstrReturn) );
HeapFree( GetProcessHeap(), 0, (char*)msip16 - sizeof(LPMCI_SYSINFO_PARMSW) );