From ad372d31e3b476078c4f556009d72411991286dd Mon Sep 17 00:00:00 2001 From: Eric Kohl Date: Mon, 17 Apr 2017 22:20:44 +0000 Subject: [PATCH] [NEWDEV] When the driver installation fails, set the CONFIGFLAG_FAILEDINSTALL flag only if the user checked the 'Do not show this dialog anymore' checkbox. CORE-13095 svn path=/trunk/; revision=74363 --- reactos/dll/win32/newdev/wizard.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/reactos/dll/win32/newdev/wizard.c b/reactos/dll/win32/newdev/wizard.c index 640a43e1b63..8f91b324aa2 100644 --- a/reactos/dll/win32/newdev/wizard.c +++ b/reactos/dll/win32/newdev/wizard.c @@ -1010,6 +1010,12 @@ NoDriverDlgProc( 0, NULL); } + else + { + SetFailedInstall(DevInstData->hDevInfo, + &DevInstData->devInfoData, + FALSE); + } break; }