mirror of
https://github.com/reactos/reactos.git
synced 2024-11-20 14:30:57 +00:00
Do not call CcUnpinData() with NULL PtrBCB.
svn path=/trunk/; revision=42569
This commit is contained in:
parent
5f73e1c2bc
commit
f2a7907cb7
1 changed files with 6 additions and 2 deletions
|
@ -1410,8 +1410,12 @@ ULONG NTAPI Ext2LocateFileInDisk (
|
|||
}
|
||||
}
|
||||
|
||||
CcUnpinData( PtrBCB );
|
||||
PtrBCB = NULL;
|
||||
// FIXME
|
||||
if( PtrBCB )
|
||||
{
|
||||
CcUnpinData( PtrBCB );
|
||||
PtrBCB = NULL;
|
||||
}
|
||||
|
||||
return InodeNo;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue