mirror of
https://github.com/reactos/reactos.git
synced 2025-04-05 05:01:03 +00:00
Enabled the call to ObDereferenceObject for some
IRP_MJ_xxx functions in IoSecondStageCompletion(). svn path=/trunk/; revision=2172
This commit is contained in:
parent
cc2e3f0806
commit
d0f2100e07
1 changed files with 5 additions and 1 deletions
|
@ -254,6 +254,10 @@ VOID IoSecondStageCompletion(PIRP Irp, CCHAR PriorityBoost)
|
|||
{
|
||||
//ObDereferenceObject(FileObject);
|
||||
}
|
||||
|
||||
if (FileObject != NULL && (IoStack->MajorFunction == IRP_MJ_READ || IoStack->MajorFunction == IRP_MJ_WRITE || IoStack->MajorFunction ==IRP_MJ_CLEANUP || IoStack->MajorFunction ==IRP_MJ_CREATE || IoStack->MajorFunction==IRP_MJ_DIRECTORY_CONTROL))
|
||||
{
|
||||
ObDereferenceObject(FileObject);
|
||||
}
|
||||
|
||||
IoFreeIrp(Irp);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue