Module: wine Branch: master Commit: 178d39ccc570cdc3321ad57d686e085a3553b012 URL: http://source.winehq.org/git/wine.git/?a=commit;h=178d39ccc570cdc3321ad57d68...
Author: Hans Leidekker hans@codeweavers.com Date: Tue Feb 22 13:16:55 2011 +0100
msi: Fix a trace.
---
dlls/msi/custom.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/dlls/msi/custom.c b/dlls/msi/custom.c index cb7a48c..c3f2302 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;