mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-08-31 12:23:31 +00:00
[NPFS]
- Base data queue entry on the right struct member in NpCompleteStalledWrites. Fixes list entry corruption found in CORE-8419. svn path=/trunk/; revision=63826
This commit is contained in:
@@ -62,7 +62,9 @@ NpCompleteStalledWrites(IN PNP_DATA_QUEUE DataQueue,
|
||||
{
|
||||
if (!QuotaLeft) break;
|
||||
|
||||
DataQueueEntry = CONTAINING_RECORD(NextEntry, NP_DATA_QUEUE_ENTRY, Irp);
|
||||
DataQueueEntry = CONTAINING_RECORD(NextEntry,
|
||||
NP_DATA_QUEUE_ENTRY,
|
||||
QueueEntry);
|
||||
|
||||
Irp = DataQueueEntry->Irp;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user