From f9739601b380b9bd8ab43d8fa87c940c65517d94 Mon Sep 17 00:00:00 2001 From: Eric Kohl Date: Fri, 5 Oct 2018 15:09:27 +0200 Subject: [PATCH 1/1] [DEVMGR] Hackfix CORE-5643 --- dll/win32/devmgr/devmgmt/DeviceView.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/dll/win32/devmgr/devmgmt/DeviceView.cpp b/dll/win32/devmgr/devmgmt/DeviceView.cpp index 4be0c2e75f1..690609c73ca 100644 --- a/dll/win32/devmgr/devmgmt/DeviceView.cpp +++ b/dll/win32/devmgr/devmgmt/DeviceView.cpp @@ -1206,6 +1206,11 @@ CDeviceView::RefreshDeviceList() // create a new device node and add it to the list DeviceNode = new CDeviceNode(DeviceInfoData.DevInst, &m_ImageListData); + /* FIXME: Start of Hack for CORE-5643 */ + if (!DeviceNode->IsInstalled()) + continue; + /* FIXME: End of Hack for CORE-5643 */ + if (DeviceNode->SetupNode()) { m_DeviceNodeList.AddTail(DeviceNode); -- 2.17.1