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

Spotted by Michael Stefaniuc and Hans Leidekker.
This commit is contained in:
Francois Gouget 2011-09-19 23:09:43 +02:00 committed by Alexandre Julliard
parent 8b903e43e7
commit ed01c53290
1 changed files with 1 additions and 1 deletions

View File

@ -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;