msi: Trace the exit code from custom action processes.

This commit is contained in:
Hans Leidekker 2011-11-10 11:38:47 +01:00 committed by Alexandre Julliard
parent 353016f92f
commit a100550383

View file

@ -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;