ole32: Remove uses of This->base.ancestorStorage in createDirEntry.

This commit is contained in:
Vincent Povirk 2009-10-28 15:01:32 -05:00 committed by Alexandre Julliard
parent 7973904d56
commit 4e4810f2c5
1 changed files with 4 additions and 4 deletions

View File

@ -1166,7 +1166,7 @@ static HRESULT createDirEntry(
do do
{ {
hr = StorageImpl_ReadRawDirEntry(storage->base.ancestorStorage, hr = StorageImpl_ReadRawDirEntry(storage,
currentPropertyIndex, currentPropertyIndex,
currentData); currentData);
@ -1211,7 +1211,7 @@ static HRESULT createDirEntry(
* obtain the new count of property blocks * obtain the new count of property blocks
*/ */
blockCount = BlockChainStream_GetCount( blockCount = BlockChainStream_GetCount(
storage->base.ancestorStorage->rootBlockChain)+1; storage->rootBlockChain)+1;
/* /*
* initialize the size used by the property stream * initialize the size used by the property stream
@ -1222,7 +1222,7 @@ static HRESULT createDirEntry(
/* /*
* add a property block to the property chain * add a property block to the property chain
*/ */
BlockChainStream_SetSize(storage->base.ancestorStorage->rootBlockChain, newSize); BlockChainStream_SetSize(storage->rootBlockChain, newSize);
/* /*
* memset the empty property in order to initialize the unused newly * memset the empty property in order to initialize the unused newly
@ -1241,7 +1241,7 @@ static HRESULT createDirEntry(
propertyIndex++) propertyIndex++)
{ {
StorageImpl_WriteRawDirEntry( StorageImpl_WriteRawDirEntry(
storage->base.ancestorStorage, storage,
propertyIndex, propertyIndex,
emptyData); emptyData);
} }