mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 10:04:49 +00:00
FAT12 fixes
svn path=/trunk/; revision=1527
This commit is contained in:
parent
7b0b7c5396
commit
0d8b4e3da6
2 changed files with 3 additions and 3 deletions
|
@ -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);
|
||||
|
|
|
@ -180,8 +180,7 @@ static VOID KeSetCurrentIrql(KIRQL newlvl)
|
|||
* Uses fastcall convention
|
||||
*/
|
||||
|
||||
VOID
|
||||
FASTCALL
|
||||
VOID FASTCALL
|
||||
KfLowerIrql (
|
||||
KIRQL NewIrql
|
||||
)
|
||||
|
|
Loading…
Reference in a new issue