ole32/tests: Fix spelling of a variable name.

Signed-off-by: Francois Gouget <fgouget@free.fr>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
oldstable
Francois Gouget 2018-09-14 16:47:39 +02:00 committed by Alexandre Julliard
parent ea8a88047c
commit 8330192951
1 changed files with 7 additions and 7 deletions

View File

@ -4620,7 +4620,7 @@ static void test_OleCreateStaticFromData(void)
IOleObject *ole_obj = NULL;
IStorage *storage;
ILockBytes *ilb;
IPersist *presist;
IPersist *persist;
CLSID clsid;
STATSTG statstg;
int enumerated_streams, matched_streams;
@ -4699,9 +4699,9 @@ static void test_OleCreateStaticFromData(void)
hr = OleCreateStaticFromData(&DataObject, &IID_IOleObject, OLERENDER_FORMAT,
dib_fmt, NULL, storage, (void **)&ole_obj);
ok(hr == S_OK, "OleCreateStaticFromData failed: 0x%08x.\n", hr);
hr = IOleObject_QueryInterface(ole_obj, &IID_IPersist, (void **)&presist);
hr = IOleObject_QueryInterface(ole_obj, &IID_IPersist, (void **)&persist);
ok(hr == S_OK, "IOleObject_QueryInterface failed: 0x%08x.\n", hr);
hr = IPersist_GetClassID(presist, &clsid);
hr = IPersist_GetClassID(persist, &clsid);
ok(hr == S_OK, "IPersist_GetClassID failed: 0x%08x.\n", hr);
ok(IsEqualCLSID(&clsid, &CLSID_Picture_Dib), "Got wrong clsid: %s, expected: %s.\n",
wine_dbgstr_guid(&clsid), wine_dbgstr_guid(&CLSID_Picture_Dib));
@ -4717,7 +4717,7 @@ static void test_OleCreateStaticFromData(void)
ok(enumerated_streams == stg_def_dib.stream_count, "created %d != def streams %d\n",
enumerated_streams, stg_def_dib.stream_count);
ReleaseStgMedium(&stgmed);
IPersist_Release(presist);
IPersist_Release(persist);
IStorage_Release(storage);
IOleObject_Release(ole_obj);
@ -4733,9 +4733,9 @@ static void test_OleCreateStaticFromData(void)
hr = OleCreateStaticFromData(&DataObject, &IID_IOleObject, OLERENDER_FORMAT,
emf_fmt, NULL, storage, (void **)&ole_obj);
ok(hr == S_OK, "OleCreateStaticFromData failed: 0x%08x.\n", hr);
hr = IOleObject_QueryInterface(ole_obj, &IID_IPersist, (void **)&presist);
hr = IOleObject_QueryInterface(ole_obj, &IID_IPersist, (void **)&persist);
ok(hr == S_OK, "IOleObject_QueryInterface failed: 0x%08x.\n", hr);
hr = IPersist_GetClassID(presist, &clsid);
hr = IPersist_GetClassID(persist, &clsid);
ok(hr == S_OK, "IPersist_GetClassID failed: 0x%08x.\n", hr);
ok(IsEqualCLSID(&clsid, &CLSID_Picture_EnhMetafile), "Got wrong clsid: %s, expected: %s.\n",
wine_dbgstr_guid(&clsid), wine_dbgstr_guid(&CLSID_Picture_EnhMetafile));
@ -4751,7 +4751,7 @@ static void test_OleCreateStaticFromData(void)
ok(enumerated_streams == stg_def_emf.stream_count, "created %d != def streams %d\n",
enumerated_streams, stg_def_emf.stream_count);
ReleaseStgMedium(&stgmed);
IPersist_Release(presist);
IPersist_Release(persist);
IStorage_Release(storage);
IOleObject_Release(ole_obj);