Author: tfaber Date: Fri Feb 27 12:39:27 2015 New Revision: 66477
URL: http://svn.reactos.org/svn/reactos?rev=66477&view=rev Log: [CDFS] - Do not touch Irp after handing it off to FsRtlNotifyFullChangeDirectory CORE-8776 CORE-9274 #resolve
Modified: trunk/reactos/drivers/filesystems/cdfs/dirctl.c
Modified: trunk/reactos/drivers/filesystems/cdfs/dirctl.c URL: http://svn.reactos.org/svn/reactos/trunk/reactos/drivers/filesystems/cdfs/di... ============================================================================== --- trunk/reactos/drivers/filesystems/cdfs/dirctl.c [iso-8859-1] (original) +++ trunk/reactos/drivers/filesystems/cdfs/dirctl.c [iso-8859-1] Fri Feb 27 12:39:27 2015 @@ -813,11 +813,10 @@ break; }
- Irp->IoStatus.Status = Status; - Irp->IoStatus.Information = 0; - if (Status != STATUS_PENDING) { + Irp->IoStatus.Status = Status; + Irp->IoStatus.Information = 0; IoCompleteRequest(Irp, IO_NO_INCREMENT); } FsRtlExitFileSystem();