FAT12 fixes

svn path=/trunk/; revision=1527
This commit is contained in:
David Welch 2001-01-16 23:22:03 +00:00
parent 7b0b7c5396
commit 0d8b4e3da6
2 changed files with 3 additions and 3 deletions

View file

@ -1,5 +1,5 @@
/*
* $Id: fat.c,v 1.15 2001/01/16 15:43:42 dwelch Exp $
* $Id: fat.c,v 1.16 2001/01/16 23:22:03 dwelch Exp $
*
* COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS kernel
@ -284,6 +284,7 @@ FAT12FindAvailableCluster (PDEVICE_EXTENSION DeviceExt, PULONG Cluster)
DPRINT("Found available cluster 0x%x\n", i);
*Cluster = i;
CcReleaseCacheSegment(DeviceExt->StorageBcb, CacheSeg, TRUE);
return(STATUS_SUCCESS);
}
}
CcReleaseCacheSegment(DeviceExt->StorageBcb, CacheSeg, TRUE);

View file

@ -180,8 +180,7 @@ static VOID KeSetCurrentIrql(KIRQL newlvl)
* Uses fastcall convention
*/
VOID
FASTCALL
VOID FASTCALL
KfLowerIrql (
KIRQL NewIrql
)