Commit b6c66535 authored by Felix Paul Kühne's avatar Felix Paul Kühne

macosx: adopt courmisch's feedback, thx

parent cfe30ad2
...@@ -224,12 +224,11 @@ static void MsgCallback( void *data, int type, const msg_item_t *item, const cha ...@@ -224,12 +224,11 @@ static void MsgCallback( void *data, int type, const msg_item_t *item, const cha
int canc = vlc_savecancel(); int canc = vlc_savecancel();
char *str; char *str;
/* this may happen from time to time, let's bail out as info would be useless anyway */
if( !item->psz_module || !format )
return;
if (vasprintf( &str, format, ap ) == -1) if (vasprintf( &str, format, ap ) == -1)
{
vlc_restorecancel( canc );
return; return;
}
NSAutoreleasePool *o_pool = [[NSAutoreleasePool alloc] init]; NSAutoreleasePool *o_pool = [[NSAutoreleasePool alloc] init];
[[VLCMain sharedInstance] processReceivedlibvlcMessage: item ofType: type withStr: str]; [[VLCMain sharedInstance] processReceivedlibvlcMessage: item ofType: type withStr: str];
......
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