Hans Leidekker : msi: Trace the exit code from custom action processes.
Module: wine Branch: master Commit: a1005503830a65f2f53080d8906baebd30c78127 URL: http://source.winehq.org/git/wine.git/?a=commit;h=a1005503830a65f2f53080d890... Author: Hans Leidekker <hans(a)codeweavers.com> Date: Thu Nov 10 11:38:47 2011 +0100 msi: Trace the exit code from custom action processes. --- 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;
participants (1)
-
Alexandre Julliard