Commit 1692e700 authored by Derk-Jan Hartman's avatar Derk-Jan Hartman

macosx controls: Another string memleak.

parent a037a08d
......@@ -707,7 +707,6 @@
[o_mi setTitle: [[VLCMain sharedInstance] localizedString: text.psz_string ?
text.psz_string : psz_variable ]];
var_Get( p_object, psz_variable, &val );
if( i_type & VLC_VAR_HASCHOICE )
{
NSMenu *o_menu = [o_mi submenu];
......@@ -718,6 +717,10 @@
free( text.psz_string );
return;
}
if( var_Get( p_object, psz_variable, &val ) < 0 )
{
return;
}
VLCAutoGeneratedMenuContent *o_data;
switch( i_type & VLC_VAR_TYPE )
......@@ -737,8 +740,7 @@
break;
default:
free( text.psz_string );
return;
break;
}
if( ( i_type & VLC_VAR_TYPE ) == VLC_VAR_STRING ) free( val.psz_string );
......@@ -831,7 +833,6 @@
for( i = 0; i < val_list.p_list->i_count; i++ )
{
vlc_value_t another_val;
NSMenuItem * o_lmi;
NSString *o_title = @"";
VLCAutoGeneratedMenuContent *o_data;
......@@ -839,15 +840,13 @@
switch( i_type & VLC_VAR_TYPE )
{
case VLC_VAR_STRING:
another_val.psz_string =
strdup(val_list.p_list->p_values[i].psz_string);
o_title = [[VLCMain sharedInstance] localizedString: text_list.p_list->p_values[i].psz_string ?
text_list.p_list->p_values[i].psz_string : val_list.p_list->p_values[i].psz_string ];
o_lmi = [o_menu addItemWithTitle: o_title action: pf_callback keyEquivalent: @""];
o_data = [[VLCAutoGeneratedMenuContent alloc] initWithVariableName: psz_variable ofObject: p_object
andValue: another_val ofType: i_type];
andValue: val_list.p_list->p_values[i] ofType: i_type];
[o_lmi setRepresentedObject: [o_data autorelease]];
[o_lmi setTarget: self];
......@@ -1156,10 +1155,12 @@
if( self != nil )
{
psz_name = strdup( name );
_vlc_object = vlc_object_hold( object );
value = val;
psz_name = strdup( name );
i_type = type;
value = val;
if( (i_type & VLC_VAR_TYPE) == VLC_VAR_STRING )
value.psz_string = strdup( val.psz_string );
}
return( self );
......@@ -1168,6 +1169,8 @@
- (void)dealloc
{
vlc_object_release( _vlc_object );
if( (i_type & VLC_VAR_TYPE) == VLC_VAR_STRING )
free( value.psz_string );
free( psz_name );
[super dealloc];
}
......
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