Module: wine Branch: master Commit: ac0eb57274b8ec8ebe30651fb87118ec504c45dc URL: https://source.winehq.org/git/wine.git/?a=commit;h=ac0eb57274b8ec8ebe30651fb... Author: Zebediah Figura <z.figura12(a)gmail.com> Date: Tue Jul 14 19:56:20 2020 -0500 quartz: Don't sort the graph in IMediaFilter::GetState(). Signed-off-by: Zebediah Figura <z.figura12(a)gmail.com> Signed-off-by: Alexandre Julliard <julliard(a)winehq.org> --- dlls/quartz/filtergraph.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/dlls/quartz/filtergraph.c b/dlls/quartz/filtergraph.c index e035b8f0ed..5a10df9db2 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)