- Remove the work item from the work queue in ChewRemove

svn path=/trunk/; revision=37264
This commit is contained in:
Cameron Gutman 2008-11-09 15:55:55 +00:00
parent 3a2183900e
commit 7ad74fb236

View file

@ -101,6 +101,7 @@ BOOLEAN ChewCreate
VOID ChewRemove( PVOID Item ) {
PWORK_ITEM WorkItem = Item;
RemoveEntryList( &WorkItem->Entry );
IoFreeWorkItem( WorkItem->WorkItem );
ExFreePool( WorkItem );
}