Francois Gouget : msi: Fix printing NULL strings.

Alexandre Julliard julliard at winehq.org
Mon Sep 19 13:48:41 CDT 2011


Module: wine
Branch: master
Commit: ff98afc450a1a881ab951a29662c8f1313dcc425
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=ff98afc450a1a881ab951a29662c8f1313dcc425

Author: Francois Gouget <fgouget at free.fr>
Date:   Sun Sep 18 19:49:55 2011 +0200

msi: Fix printing NULL strings.

---

 dlls/msi/install.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/dlls/msi/install.c b/dlls/msi/install.c
index d281098..de9c0ce 100644
--- a/dlls/msi/install.c
+++ b/dlls/msi/install.c
@@ -489,7 +489,7 @@ UINT WINAPI MsiGetSourcePathA( MSIHANDLE hInstall, LPCSTR szFolder,
     awstring str;
     UINT r;
 
-    TRACE("%s %p %p\n", szFolder, debugstr_a(szPathBuf), pcchPathBuf);
+    TRACE("%s %p %p\n", debugstr_a(szFolder), debugstr_a(szPathBuf), pcchPathBuf);
 
     str.unicode = FALSE;
     str.str.a = szPathBuf;




More information about the wine-cvs mailing list