mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-02 19:26:32 +00:00
[REISERFS] Don't allocate (and leak :-)) an unused event
CID 1363603
This commit is contained in:
@@ -27,7 +27,9 @@ NTSTATUS
|
||||
RfsdShutDown (IN PRFSD_IRP_CONTEXT IrpContext)
|
||||
{
|
||||
NTSTATUS Status;
|
||||
#ifndef __REACTOS__
|
||||
PKEVENT Event;
|
||||
#endif
|
||||
PIRP Irp;
|
||||
PIO_STACK_LOCATION IrpSp;
|
||||
PRFSD_VCB Vcb;
|
||||
@@ -61,8 +63,10 @@ RfsdShutDown (IN PRFSD_IRP_CONTEXT IrpContext)
|
||||
|
||||
GlobalResourceAcquired = TRUE;
|
||||
|
||||
#ifndef __REACTOS__
|
||||
Event = ExAllocatePoolWithTag(NonPagedPool, sizeof(KEVENT), RFSD_POOL_TAG);
|
||||
KeInitializeEvent(Event, NotificationEvent, FALSE );
|
||||
#endif
|
||||
|
||||
for (ListEntry = RfsdGlobal->VcbList.Flink;
|
||||
ListEntry != &(RfsdGlobal->VcbList);
|
||||
|
||||
Reference in New Issue
Block a user