Commit 69a63547 authored by David Fuhrmann's avatar David Fuhrmann Committed by Felix Paul Kühne

macosx: fixed crash when log window is open while progress window is closing

Signed-off-by: default avatarFelix Paul Kühne <fkuehne@videolan.org>
parent 520e60b6
...@@ -441,7 +441,7 @@ void updateProgressPanel (void *priv, const char *text, float value) ...@@ -441,7 +441,7 @@ void updateProgressPanel (void *priv, const char *text, float value)
void destroyProgressPanel (void *priv) void destroyProgressPanel (void *priv)
{ {
NSAutoreleasePool *o_pool = [[NSAutoreleasePool alloc] init]; NSAutoreleasePool *o_pool = [[NSAutoreleasePool alloc] init];
[[[VLCMain sharedInstance] coreDialogProvider] destroyProgressPanel]; [[[VLCMain sharedInstance] coreDialogProvider] performSelectorOnMainThread:@selector(destroyProgressPanel) withObject:nil waitUntilDone:NO];
[o_pool release]; [o_pool release];
} }
......
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