[NTOSKRNL]

- Print a warning instead of crashing when a driver provides a NULL pointer in the MajorFunction array

svn path=/trunk/; revision=47308
This commit is contained in:
Cameron Gutman
2010-05-22 16:12:59 +00:00
parent df9115f1d2
commit d7bbeaed19
+5 -2
View File
@@ -1556,11 +1556,14 @@ try_again:
* Doing so is illegal; drivers shouldn't touch entry points they
* do not implement.
*/
ASSERT(DriverObject->MajorFunction[i] != NULL);
/* Check if it did so anyway */
if (!DriverObject->MajorFunction[i])
if (!DriverObject->MajorFunction[i])
{
/* Print a warning in the debug log */
DPRINT1("Driver <%wZ> set DriverObject->MajorFunction[%d] to NULL!\n",
&DriverObject->DriverName, i);
/* Fix it up */
DriverObject->MajorFunction[i] = IopInvalidDeviceRequest;
}