From ac0eb57274b8ec8ebe30651fb87118ec504c45dc Mon Sep 17 00:00:00 2001 From: Zebediah Figura Date: Tue, 14 Jul 2020 19:56:20 -0500 Subject: [PATCH] quartz: Don't sort the graph in IMediaFilter::GetState(). Signed-off-by: Zebediah Figura Signed-off-by: Alexandre Julliard --- dlls/quartz/filtergraph.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/dlls/quartz/filtergraph.c b/dlls/quartz/filtergraph.c index e035b8f0ed1..5a10df9db2b 100644 --- a/dlls/quartz/filtergraph.c +++ b/dlls/quartz/filtergraph.c @@ -4933,8 +4933,6 @@ static HRESULT WINAPI MediaFilter_GetState(IMediaFilter *iface, DWORD timeout, F EnterCriticalSection(&graph->cs); - sort_filters(graph); - *state = graph->state; LIST_FOR_EACH_ENTRY(filter, &graph->filters, struct filter, entry)