From: Hans Leidekker Date: Tue, 22 Feb 2011 12:16:55 +0000 (+0100) Subject: msi: Fix a trace. X-Git-Tag: wine-1.3.15~280 X-Git-Url: http://git.etersoft.ru/projects/?a=commitdiff_plain;h=178d39ccc570cdc3321ad57d686e085a3553b012;p=wine%2Feterwine.git msi: Fix a trace. --- diff --git a/dlls/msi/custom.c b/dlls/msi/custom.c index cb7a48c82e..c3f2302756 100644 --- a/dlls/msi/custom.c +++ b/dlls/msi/custom.c @@ -424,7 +424,7 @@ static MSIBINARY *create_temp_binary( MSIPACKAGE *package, LPCWSTR source, BOOL /* keep a reference to prevent the dll from being unloaded */ if (dll && !(binary->module = LoadLibraryW( tmpfile ))) { - ERR("failed to load dll %s (%u)\n", debugstr_w( binary->tmpfile ), GetLastError() ); + ERR("failed to load dll %s (%u)\n", debugstr_w( tmpfile ), GetLastError() ); DeleteFileW( tmpfile ); msi_free( binary ); return NULL;