From 65a1d4e94e92154ea99c0155da3fd9922044437c Mon Sep 17 00:00:00 2001 From: Simon Morlat <simon.morlat@linphone.org> Date: Fri, 24 Jan 2025 11:46:54 +0100 Subject: [PATCH] Fix crash with MSOSXGLDisplay, happening when running test suites on MacOS. --- src/videofilters/msosxdisplay.m | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/videofilters/msosxdisplay.m b/src/videofilters/msosxdisplay.m index d5ce74c81..cd4312621 100644 --- a/src/videofilters/msosxdisplay.m +++ b/src/videofilters/msosxdisplay.m @@ -385,9 +385,7 @@ static void osx_gl_process(MSFilter* f) { static void osx_gl_uninit(MSFilter* f) { OSXDisplay* thiz = (OSXDisplay*) f->data; if (thiz != nil) { - NSAutoreleasePool *loopPool = [[NSAutoreleasePool alloc] init]; - [thiz release]; - [loopPool drain]; + [thiz performSelectorOnMainThread:@selector(release) withObject:nil waitUntilDone:FALSE]; } } -- GitLab