ole32: Fix spelling of a couple of local variables.
This commit is contained in:
parent
3c336ab0cf
commit
19be7545e5
|
@ -187,7 +187,7 @@ static void StgStreamImpl_OpenBlockChain(
|
||||||
StgStreamImpl* This)
|
StgStreamImpl* This)
|
||||||
{
|
{
|
||||||
StgProperty curProperty;
|
StgProperty curProperty;
|
||||||
BOOL readSucessful;
|
BOOL readSuccessful;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Make sure no old object is left over.
|
* Make sure no old object is left over.
|
||||||
|
@ -207,11 +207,11 @@ static void StgStreamImpl_OpenBlockChain(
|
||||||
/*
|
/*
|
||||||
* Read the information from the property.
|
* Read the information from the property.
|
||||||
*/
|
*/
|
||||||
readSucessful = StorageImpl_ReadProperty(This->parentStorage->ancestorStorage,
|
readSuccessful = StorageImpl_ReadProperty(This->parentStorage->ancestorStorage,
|
||||||
This->ownerProperty,
|
This->ownerProperty,
|
||||||
&curProperty);
|
&curProperty);
|
||||||
|
|
||||||
if (readSucessful)
|
if (readSuccessful)
|
||||||
{
|
{
|
||||||
This->streamSize = curProperty.size;
|
This->streamSize = curProperty.size;
|
||||||
|
|
||||||
|
@ -803,7 +803,7 @@ static HRESULT WINAPI StgStreamImpl_Stat(
|
||||||
StgStreamImpl* const This=(StgStreamImpl*)iface;
|
StgStreamImpl* const This=(StgStreamImpl*)iface;
|
||||||
|
|
||||||
StgProperty curProperty;
|
StgProperty curProperty;
|
||||||
BOOL readSucessful;
|
BOOL readSuccessful;
|
||||||
|
|
||||||
TRACE("%p %p %ld\n", This, pstatstg, grfStatFlag);
|
TRACE("%p %p %ld\n", This, pstatstg, grfStatFlag);
|
||||||
|
|
||||||
|
@ -817,11 +817,11 @@ static HRESULT WINAPI StgStreamImpl_Stat(
|
||||||
/*
|
/*
|
||||||
* Read the information from the property.
|
* Read the information from the property.
|
||||||
*/
|
*/
|
||||||
readSucessful = StorageImpl_ReadProperty(This->parentStorage->ancestorStorage,
|
readSuccessful = StorageImpl_ReadProperty(This->parentStorage->ancestorStorage,
|
||||||
This->ownerProperty,
|
This->ownerProperty,
|
||||||
&curProperty);
|
&curProperty);
|
||||||
|
|
||||||
if (readSucessful)
|
if (readSuccessful)
|
||||||
{
|
{
|
||||||
StorageUtl_CopyPropertyToSTATSTG(pstatstg,
|
StorageUtl_CopyPropertyToSTATSTG(pstatstg,
|
||||||
&curProperty,
|
&curProperty,
|
||||||
|
|
Loading…
Reference in New Issue