msi: Don't use debugstr_a() on an output parameter.
Spotted by Michael Stefaniuc and Hans Leidekker.
This commit is contained in:
parent
8b903e43e7
commit
ed01c53290
|
@ -489,7 +489,7 @@ UINT WINAPI MsiGetSourcePathA( MSIHANDLE hInstall, LPCSTR szFolder,
|
||||||
awstring str;
|
awstring str;
|
||||||
UINT r;
|
UINT r;
|
||||||
|
|
||||||
TRACE("%s %p %p\n", debugstr_a(szFolder), debugstr_a(szPathBuf), pcchPathBuf);
|
TRACE("%s %p %p\n", debugstr_a(szFolder), szPathBuf, pcchPathBuf);
|
||||||
|
|
||||||
str.unicode = FALSE;
|
str.unicode = FALSE;
|
||||||
str.str.a = szPathBuf;
|
str.str.a = szPathBuf;
|
||||||
|
|
Loading…
Reference in New Issue