- Timestamp:
- Jun 28, 2009 7:18:09 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Storage/VHDHDDCore.cpp
r21006 r21007 229 229 { 230 230 #ifdef RT_ARCH_AMD64 231 return (uint8_t *)RTMemAllocZ( RT_ALIGN_64(pImage->cbDataBlockBitmap, 8));231 return (uint8_t *)RTMemAllocZ(pImage->cbDataBlockBitmap + 8); 232 232 #else 233 return (uint8_t *)RTMemAllocZ( RT_ALIGN_32(pImage->cbDataBlockBitmap, 4));233 return (uint8_t *)RTMemAllocZ(pImage->cbDataBlockBitmap + 4); 234 234 #endif 235 235 }
Note:
See TracChangeset
for help on using the changeset viewer.