Commit 895880e9 authored by David Fuhrmann's avatar David Fuhrmann

macosx: remove unneeded extra autorelease pool

parent c8f0f3b4
...@@ -1424,7 +1424,6 @@ static VLCMainWindow *_o_sharedInstance = nil; ...@@ -1424,7 +1424,6 @@ static VLCMainWindow *_o_sharedInstance = nil;
- (void)updateName - (void)updateName
{ {
NSAutoreleasePool *o_pool = [[NSAutoreleasePool alloc] init];
input_thread_t * p_input; input_thread_t * p_input;
p_input = pl_CurrentInput(VLCIntf); p_input = pl_CurrentInput(VLCIntf);
if (p_input) { if (p_input) {
...@@ -1464,8 +1463,6 @@ static VLCMainWindow *_o_sharedInstance = nil; ...@@ -1464,8 +1463,6 @@ static VLCMainWindow *_o_sharedInstance = nil;
[self setTitle: _NS("VLC media player")]; [self setTitle: _NS("VLC media player")];
[self setRepresentedURL: nil]; [self setRepresentedURL: nil];
} }
[o_pool release];
} }
- (void)updateWindow - (void)updateWindow
......
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