From: Pierre d'Herbemont Date: Sat, 12 Jul 2008 12:35:59 +0000 (+0200) Subject: macosx: No need to use FREENULL here. X-Git-Tag: 0.9.0-test2~47 X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=caf6188518644f20b84536fca5af932de98ecd02;p=vlc macosx: No need to use FREENULL here. --- diff --git a/modules/gui/macosx/vout.m b/modules/gui/macosx/vout.m index aca5b87786..4161a2a2a8 100644 --- a/modules/gui/macosx/vout.m +++ b/modules/gui/macosx/vout.m @@ -298,9 +298,9 @@ int DeviceCallback( vlc_object_t *p_this, const char *psz_variable, if( psz_uri != NULL ) o_mrl = [NSMutableString stringWithUTF8String: psz_uri]; - FREENULL( psz_nowPlaying ); - FREENULL( psz_name ); - FREENULL( psz_uri ); + free( psz_nowPlaying ); + free( psz_name ); + free( psz_uri ); if( o_title == nil ) o_title = o_mrl;