mirror of
https://github.com/reactos/reactos.git
synced 2025-04-25 16:10:29 +00:00
Always complete the IRP_MJ_PNP irp, even if we don't recognize the minor function
svn path=/trunk/; revision=27150
This commit is contained in:
parent
0a8b633b06
commit
8bb5ea4208
1 changed files with 2 additions and 1 deletions
|
@ -483,7 +483,8 @@ IntVideoPortDispatchPnp(
|
||||||
break;
|
break;
|
||||||
|
|
||||||
default:
|
default:
|
||||||
return Irp->IoStatus.Status;
|
Status = Irp->IoStatus.Status;
|
||||||
|
IoCompleteRequest(Irp, IO_NO_INCREMENT);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue