|
|
Crash in xmlhelper.cpp line 336 because hcInfo->ControllerInfo is NULL. 336: USB_CONTROLLER_ FLAVOR flavor = hcInfo->Control lerInfo->Contro llerFlavor; In line 339 there is a check against NULL but that's a bit too late... 339: if(NULL != hcInfo->Control lerInfo) hcInfo->Control lerInfo is NULL here because the HC's driver does not support the USBUSER_GET_CON TROLLER_INFO_0 request.
In display.c line 2450 tests for the LPM bit. It is "Bit 1", so it has a value of 2, not 1. And even there is only one valid bit at the moment it is better style to test for the bit only, not for a certain value. Fix: if (extCapDesc->bmAttributes & 2) Uwe Sieber
I had a big problem with the WindowsApplicationForDrivers8. 0 toolset setting and a couple of compiler options. Why? To compile it change the C++ configuration options to no Common Languiage Run Time Support, disabled minimal rebuild, and under general changed the platform toolset to v110. It compiled using VS 11 and ran perfectly after that.