From caf6188518644f20b84536fca5af932de98ecd02 Mon Sep 17 00:00:00 2001 From: Pierre d'Herbemont Date: Sat, 12 Jul 2008 14:35:59 +0200 Subject: [PATCH] macosx: No need to use FREENULL here. --- modules/gui/macosx/vout.m | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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; -- 2.39.2