- Fix leaking an entry in some cases during ObpFreeCapturedAttributes call. For more details: http://www.reactos.org/forum/viewtopic.php?t=5311.

svn path=/trunk/; revision=32521
This commit is contained in:
Aleksey Bragin 2008-02-28 11:37:14 +00:00
parent ed6ebdede8
commit 3de0480cae

View file

@ -290,6 +290,12 @@ ObpFreeCapturedAttributes(IN PVOID Buffer,
List->L.FreeMisses++;
List->L.Free(Buffer);
}
else
{
/* The free was within the Depth */
InterlockedPushEntrySList(&List->L.ListHead,
(PSINGLE_LIST_ENTRY)Buffer);
}
}
else
{