Removed unreachable line (#517)

The break statement was unnecessary because the goto on the line before it returns from the routine so it can never be reached
This commit is contained in:
Peter Wathall 2018-04-24 20:35:23 +00:00 committed by Ged Murphy
parent dd653de251
commit 9e2dd8676a

View file

@ -4170,8 +4170,6 @@ Return Value:
IoCompleteRequest(Irp, IO_NO_INCREMENT);
status = STATUS_INSUFFICIENT_RESOURCES;
goto SetStatusAndReturn;
break;
}
irp2->Tail.Overlay.Thread = Irp->Tail.Overlay.Thread;