From 8a39d95805934062b53175cdecca0e79c9959752 Mon Sep 17 00:00:00 2001 From: Gunnar Dalsnes Date: Tue, 20 Apr 2004 23:14:35 +0000 Subject: [PATCH] temp.workaround: allways free irp svn path=/trunk/; revision=9191 --- reactos/ntoskrnl/io/irp.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/reactos/ntoskrnl/io/irp.c b/reactos/ntoskrnl/io/irp.c index 08eee855758..32b9d2c2967 100644 --- a/reactos/ntoskrnl/io/irp.c +++ b/reactos/ntoskrnl/io/irp.c @@ -1,4 +1,4 @@ -/* $Id: irp.c,v 1.59 2004/04/20 19:01:47 gdalsnes Exp $ +/* $Id: irp.c,v 1.60 2004/04/20 23:14:35 gdalsnes Exp $ * * COPYRIGHT: See COPYING in the top level directory * PROJECT: ReactOS kernel @@ -318,10 +318,10 @@ IofCompleteRequest(PIRP Irp, } /* io manager frees the irp for close operations */ - if (Irp->Flags & IRP_PAGING_IO) - { +// if (Irp->Flags & IRP_PAGING_IO) +// { IoFreeIrp(Irp); - } +// } return; }