diff --git a/dll/win32/devmgr/properties/misc.cpp b/dll/win32/devmgr/properties/misc.cpp index 5dbe6a4ea0c..50ec12f94e7 100644 --- a/dll/win32/devmgr/properties/misc.cpp +++ b/dll/win32/devmgr/properties/misc.cpp @@ -1078,8 +1078,7 @@ FindCurrentDriver(IN HDEVINFO DeviceInfoSet, ERR("SetupDiGetDriverInfoDetail() failed with error 0x%lx\n", GetLastError()); goto Cleanup; } - if (!_wcsicmp(DriverInfoDetailData.SectionName, - InfSection) != 0) + if (_wcsicmp(DriverInfoDetailData.SectionName, InfSection) == 0) { /* We have found the right driver */ Ret = TRUE;