From 9bd7b2e1f02f351b21fd05777b33ee78e8264c97 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Herm=C3=A8s=20B=C3=A9lusca-Ma=C3=AFto?= Date: Wed, 27 Jul 2016 19:12:35 +0000 Subject: [PATCH] [SETUPAPI]: Temporarily remove the error popup since setupapi_winetest pops it out unexpectedly. We don't lose functionality wrt. what we had before r72008 (or with what Wine currently has). CORE-11689 svn path=/trunk/; revision=72021 --- reactos/dll/win32/setupapi/install.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/reactos/dll/win32/setupapi/install.c b/reactos/dll/win32/setupapi/install.c index 34c22daf94f..a6496f9aaeb 100644 --- a/reactos/dll/win32/setupapi/install.c +++ b/reactos/dll/win32/setupapi/install.c @@ -1577,11 +1577,15 @@ cleanup: if ( hinf != INVALID_HANDLE_VALUE ) SetupCloseInfFile( hinf ); +#ifdef CORE_11689_IS_FIXED // TODO: Localize the error string. if (!ret && !(GlobalSetupFlags & PSPGF_NONINTERACTIVE)) { MessageBoxW(hwnd, section, L"setupapi.dll: An error happened...", MB_ICONERROR | MB_OK); } +#else + #pragma message("We need to understand why setupapi_winetest fails before reenabling the error popup in InstallHinfSectionW. CORE-11689") +#endif } -- 2.17.1