Commit 3667754a authored by Anton Baskanov's avatar Anton Baskanov Committed by Alexandre Julliard

qasf/dmowrapper: Don't crash in ::Stop when DMO wrapper is not initialized.

parent e285c6e9
......@@ -673,6 +673,9 @@ static HRESULT dmo_wrapper_cleanup_stream(struct strmbase_filter *iface)
IMediaObject *dmo;
DWORD i;
if (!filter->dmo)
return E_FAIL;
IUnknown_QueryInterface(filter->dmo, &IID_IMediaObject, (void **)&dmo);
for (i = 0; i < filter->source_count; ++i)
......
......@@ -1995,6 +1995,23 @@ static void test_connect_pin(void)
ok(!ref, "Got outstanding refcount %d.\n", ref);
}
static void test_uninitialized(void)
{
IBaseFilter *filter = NULL;
HRESULT hr;
ULONG ref;
hr = CoCreateInstance(&CLSID_DMOWrapperFilter, NULL,
CLSCTX_INPROC_SERVER, &IID_IBaseFilter, (void **)&filter);
ok(hr == S_OK, "Got hr %#x.\n", hr);
hr = IBaseFilter_Stop(filter);
ok(hr == E_FAIL, "Got hr %#x.\n", hr);
ref = IBaseFilter_Release(filter);
ok(!ref, "Got outstanding refcount %d.\n", ref);
}
START_TEST(dmowrapper)
{
DWORD cookie;
......@@ -2022,6 +2039,7 @@ START_TEST(dmowrapper)
test_media_types();
test_enum_media_types();
test_connect_pin();
test_uninitialized();
CoRevokeClassObject(cookie);
DMOUnregister(&testdmo_clsid, &DMOCATEGORY_AUDIO_DECODER);
......
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