[2/2] msi: Trace the exit code from custom action processes.

Hans Leidekker hans at codeweavers.com
Thu Nov 10 04:38:47 CST 2011


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

diff --git a/dlls/msi/custom.c b/dlls/msi/custom.c
index 16a44c3..3b8e677 100644
--- a/dlls/msi/custom.c
+++ b/dlls/msi/custom.c
@@ -308,6 +308,7 @@ static UINT custom_get_process_return( HANDLE process )
     DWORD rc = 0;
 
     GetExitCodeProcess( process, &rc );
+    TRACE("exit code is %u\n", rc);
     if (rc != 0)
         return ERROR_FUNCTION_FAILED;
     return ERROR_SUCCESS;
-- 
1.7.5.4






More information about the wine-patches mailing list