Commit b9a7e961 authored by Derek Lesho's avatar Derek Lesho Committed by Alexandre Julliard

winegstreamer: Fix return code in init_gst failure case.

parent 8547aac2
......@@ -982,7 +982,10 @@ static HRESULT parser_sink_connect(struct strmbase_sink *iface, IPin *peer, cons
goto err;
if (!filter->init_gst(filter))
{
hr = E_FAIL;
goto err;
}
for (i = 0; i < filter->source_count; ++i)
{
......
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