mirror of
https://github.com/reactos/reactos.git
synced 2024-11-19 05:22:59 +00:00
[NTOS:CC] Fix bug in CcPinRead
In fact, this bug is never exposed because CcPinMappedData always returns TRUE. svn path=/trunk/; revision=65453
This commit is contained in:
parent
b89c9e939b
commit
bcc95895c6
1 changed files with 1 additions and 1 deletions
|
@ -143,7 +143,7 @@ CcPinRead (
|
|||
if (CcPinMappedData(FileObject, FileOffset, Length, Flags, Bcb))
|
||||
return TRUE;
|
||||
else
|
||||
CcUnpinData(Bcb);
|
||||
CcUnpinData(*Bcb);
|
||||
}
|
||||
return FALSE;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue