- _SHStrDupAA forgot about terminating '\0'.

- SHStrDupA adds extra terminator which is not needed as the length
  returned by MultiByteToWideChar(,,-1,,) already includes it.
This commit is contained in:
Sergei Turchanov 2003-02-12 21:29:20 +00:00 committed by Alexandre Julliard
parent 5e71f2d536
commit bf8237553c
1 changed files with 2 additions and 2 deletions

View File

@ -1716,7 +1716,7 @@ static HRESULT WINAPI _SHStrDupAA(LPCSTR src, LPSTR * dest)
int len = 0;
if (src) {
len = lstrlenA(src);
len = lstrlenA(src) + 1;
*dest = CoTaskMemAlloc(len);
} else {
*dest = NULL;
@ -1753,7 +1753,7 @@ HRESULT WINAPI SHStrDupA(LPCSTR src, LPWSTR * dest)
int len = 0;
if (src) {
len = (MultiByteToWideChar(0,0,src,-1,0,0) + 1)* sizeof(WCHAR);
len = MultiByteToWideChar(0,0,src,-1,0,0) * sizeof(WCHAR);
*dest = CoTaskMemAlloc(len);
} else {
*dest = NULL;