xnu-517.7.7.tar.gz
[apple/xnu.git] / bsd / hfs / hfscommon / BTree / BTreeAllocate.c
index a902d5087aef9ac162c5a802fe6883333f771171..d3fa1d3ebcba454864e66cf017565e85a80b9986 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2000 Apple Computer, Inc. All rights reserved.
+ * Copyright (c) 2000-2003 Apple Computer, Inc. All rights reserved.
  *
  * @APPLE_LICENSE_HEADER_START@
  * 
@@ -190,6 +190,10 @@ OSStatus   AllocateNode (BTreeControlBlockPtr              btreePtr, UInt32        *nodeNum)
        
        --btreePtr->freeNodes;
        btreePtr->flags |= kBTHeaderDirty;
+       
+       /* Account for allocations from node reserve */
+       BTUpdateReserve(btreePtr, 1);
+
        *nodeNum = nodeNumber;
        
        return noErr;