Commit dc0450f9 authored by Christophe Massiot's avatar Christophe Massiot

* Fixed a segfault in the Mac OS X interface.

parent b5f16d75
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
* intf_vlc_wrapper.c: MacOS X plugin for vlc * intf_vlc_wrapper.c: MacOS X plugin for vlc
***************************************************************************** *****************************************************************************
* Copyright (C) 2001 VideoLAN * Copyright (C) 2001 VideoLAN
* $Id: intf_vlc_wrapper.m,v 1.3 2002/05/18 13:33:44 massiot Exp $ * $Id: intf_vlc_wrapper.m,v 1.4 2002/05/19 17:27:39 massiot Exp $
* *
* Authors: Florian G. Pflug <fgp@phlo.org> * Authors: Florian G. Pflug <fgp@phlo.org>
* Jon Lech Johansen <jon-vl@nanocrew.net> * Jon Lech Johansen <jon-vl@nanocrew.net>
...@@ -98,6 +98,7 @@ static Intf_VLCWrapper *o_intf = nil; ...@@ -98,6 +98,7 @@ static Intf_VLCWrapper *o_intf = nil;
p_input_bank->pp_input[0]->stream.p_selected_area->i_part ) p_input_bank->pp_input[0]->stream.p_selected_area->i_part )
{ {
[self setupMenus]; [self setupMenus];
p_main->p_intf->p_sys->b_disabled_menus = 0;
} }
} }
...@@ -106,6 +107,7 @@ static Intf_VLCWrapper *o_intf = nil; ...@@ -106,6 +107,7 @@ static Intf_VLCWrapper *o_intf = nil;
else if ( !p_main->p_intf->p_sys->b_disabled_menus ) else if ( !p_main->p_intf->p_sys->b_disabled_menus )
{ {
[self setupMenus]; [self setupMenus];
p_main->p_intf->p_sys->b_disabled_menus = 1;
} }
return( 0 ); return( 0 );
...@@ -932,8 +934,6 @@ static Intf_VLCWrapper *o_intf = nil; ...@@ -932,8 +934,6 @@ static Intf_VLCWrapper *o_intf = nil;
} }
p_input->stream.b_changed = 0; p_input->stream.b_changed = 0;
} }
p_main->p_intf->p_sys->b_disabled_menus = 1;
} }
@end @end
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