aboutsummaryrefslogtreecommitdiff
path: root/src/wixstdba/WixStandardBootstrapperApplication.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/wixstdba/WixStandardBootstrapperApplication.cpp')
-rw-r--r--src/wixstdba/WixStandardBootstrapperApplication.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/wixstdba/WixStandardBootstrapperApplication.cpp b/src/wixstdba/WixStandardBootstrapperApplication.cpp
index 6d2fd3e2..afc6a3ee 100644
--- a/src/wixstdba/WixStandardBootstrapperApplication.cpp
+++ b/src/wixstdba/WixStandardBootstrapperApplication.cpp
@@ -3726,7 +3726,8 @@ HRESULT CreateBootstrapperApplication(
3726 __in HRESULT hrHostInitialization, 3726 __in HRESULT hrHostInitialization,
3727 __in IBootstrapperEngine* pEngine, 3727 __in IBootstrapperEngine* pEngine,
3728 __in const BOOTSTRAPPER_CREATE_ARGS* pArgs, 3728 __in const BOOTSTRAPPER_CREATE_ARGS* pArgs,
3729 __inout BOOTSTRAPPER_CREATE_RESULTS* pResults 3729 __inout BOOTSTRAPPER_CREATE_RESULTS* pResults,
3730 __out IBootstrapperApplication** ppApplication
3730 ) 3731 )
3731{ 3732{
3732 HRESULT hr = S_OK; 3733 HRESULT hr = S_OK;
@@ -3737,6 +3738,7 @@ HRESULT CreateBootstrapperApplication(
3737 3738
3738 pResults->pfnBootstrapperApplicationProc = BalBaseBootstrapperApplicationProc; 3739 pResults->pfnBootstrapperApplicationProc = BalBaseBootstrapperApplicationProc;
3739 pResults->pvBootstrapperApplicationProcContext = pApplication; 3740 pResults->pvBootstrapperApplicationProcContext = pApplication;
3741 *ppApplication = pApplication;
3740 pApplication = NULL; 3742 pApplication = NULL;
3741 3743
3742LExit: 3744LExit: