Commit 1d524052 authored by Felix Paul Kühne's avatar Felix Paul Kühne

* forward-port [17568]

parent fa22abdc
...@@ -255,12 +255,16 @@ NSLog( @"expandable" ); ...@@ -255,12 +255,16 @@ NSLog( @"expandable" );
//NSLog( @"values for %p", p_item ); //NSLog( @"values for %p", p_item );
if( [[o_tc identifier] isEqualToString:@"1"] ) if( [[o_tc identifier] isEqualToString:@"1"] )
{
/* sanity check to prevent the NSString class from crashing */
if( p_item->input.psz_name != NULL )
{ {
o_value = [NSString stringWithUTF8String: o_value = [NSString stringWithUTF8String:
p_item->p_input->psz_name]; p_item->input.psz_name];
if( o_value == NULL ) if( o_value == NULL )
o_value = [NSString stringWithCString: o_value = [NSString stringWithCString:
p_item->p_input->psz_name]; p_item->input.psz_name];
}
} }
else if( [[o_tc identifier] isEqualToString:@"2"] && p_item->p_input->p_meta && else if( [[o_tc identifier] isEqualToString:@"2"] && p_item->p_input->p_meta &&
p_item->p_input->p_meta->psz_artist && *p_item->p_input->p_meta->psz_artist ) p_item->p_input->p_meta->psz_artist && *p_item->p_input->p_meta->psz_artist )
......
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