- Fix call to RtlInitializeBitMap (spotted and debugged by Arty).

svn path=/trunk/; revision=11796
This commit is contained in:
Filip Navara
2004-11-24 17:54:38 +00:00
parent 11bc9ef5f4
commit 5a384bebca
+3 -3
View File
@@ -1,4 +1,4 @@
/* $Id: adapter.c,v 1.13 2004/11/21 21:53:06 ion Exp $
/* $Id: adapter.c,v 1.14 2004/11/24 17:54:38 navaraf Exp $
*
* COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS kernel
@@ -273,8 +273,8 @@ HalpAllocateAdapterEx(
/* Set up Bitmap */
RtlInitializeBitMap(AdapterObject->MapRegisters,
(PULONG)(AdapterObject->MapRegisters + sizeof(RTL_BITMAP)),
64);
(PULONG)(AdapterObject->MapRegisters + 1),
AllowedMapRegisters);
/* Reset the Bitmap */
RtlSetAllBits(AdapterObject->MapRegisters);