Commit 19be7545 authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

ole32: Fix spelling of a couple of local variables.

parent 3c336ab0
...@@ -187,7 +187,7 @@ static void StgStreamImpl_OpenBlockChain( ...@@ -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( ...@@ -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( ...@@ -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( ...@@ -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,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment