mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-01 12:23:29 +00:00
- Don't use a pointer to SINGLE_LIST_ENTRY as parameter for InterlockedPushEntrySList. It's not the same as SLIST_ENTRY!
svn path=/branches/ros-amd64-bringup/; revision=44293
This commit is contained in:
@@ -358,14 +358,14 @@ ObpFreeCapturedAttributes(IN PVOID Buffer,
|
||||
{
|
||||
/* The free was within the Depth */
|
||||
InterlockedPushEntrySList(&List->L.ListHead,
|
||||
(PSINGLE_LIST_ENTRY)Buffer);
|
||||
(PSLIST_ENTRY)Buffer);
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
/* The free was within the Depth */
|
||||
InterlockedPushEntrySList(&List->L.ListHead,
|
||||
(PSINGLE_LIST_ENTRY)Buffer);
|
||||
(PSLIST_ENTRY)Buffer);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user