Commit ed01c532 authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

msi: Don't use debugstr_a() on an output parameter.

Spotted by Michael Stefaniuc and Hans Leidekker.
parent 8b903e43
......@@ -489,7 +489,7 @@ UINT WINAPI MsiGetSourcePathA( MSIHANDLE hInstall, LPCSTR szFolder,
awstring str;
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.str.a = szPathBuf;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment