From: RĂ©mi Denis-Courmont Date: Sun, 30 Sep 2007 16:31:02 +0000 (+0000) Subject: Remove FREE() macro, since free() does the same internally X-Git-Tag: 0.9.0-test0~5309 X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=3429397272d130cf08139cd771c337c1085bc30f;p=vlc Remove FREE() macro, since free() does the same internally --- diff --git a/modules/access_output/http.c b/modules/access_output/http.c index bf44c68633..dcbf5627f3 100644 --- a/modules/access_output/http.c +++ b/modules/access_output/http.c @@ -358,7 +358,7 @@ static void Close( vlc_object_t * p_this ) httpd_StreamDelete( p_sys->p_httpd_stream ); httpd_HostDelete( p_sys->p_httpd_host ); - FREE( p_sys->p_header ); + free( p_sys->p_header ); msg_Dbg( p_access, "Close" ); diff --git a/modules/codec/cinepak.c b/modules/codec/cinepak.c index c58536d9b4..12cc445e4f 100644 --- a/modules/codec/cinepak.c +++ b/modules/codec/cinepak.c @@ -406,7 +406,7 @@ static int cinepak_decode_frame( cinepak_context_t *p_context, int i; for( i = 0; i < 3; i++ ) { - FREE( p_context->p_pix[i] ); + free( p_context->p_pix[i] ); } p_context->i_width = i_width; diff --git a/modules/demux/playlist/qtl.c b/modules/demux/playlist/qtl.c index af626f5212..4cdc1bea4a 100644 --- a/modules/demux/playlist/qtl.c +++ b/modules/demux/playlist/qtl.c @@ -158,7 +158,7 @@ static int Demux( demux_t *p_demux ) { msg_Err( p_demux, "invalid root node %i, %s", xml_ReaderNodeType( p_xml_reader ), psz_eltname ); - FREE( psz_eltname ); + free( psz_eltname ); /* second line has p_xml_reader ) == VLC_SUCCESS ) { @@ -182,8 +182,8 @@ static int Demux( demux_t *p_demux ) if( !psz_attrname || !psz_attrvalue ) { - FREE( psz_attrname ); - FREE( psz_attrvalue ); + free( psz_attrname ); + free( psz_attrvalue ); return -1; } @@ -318,8 +318,8 @@ static int Demux( demux_t *p_demux ) msg_Dbg( p_demux, "Attribute %s with value %s isn't valid", psz_attrname, psz_attrvalue ); } - FREE( psz_attrname ); - FREE( psz_attrvalue ); + free( psz_attrname ); + free( psz_attrvalue ); } msg_Dbg( p_demux, "autoplay: %s (unused by VLC)", @@ -369,11 +369,11 @@ static int Demux( demux_t *p_demux ) p_sys->p_playlist = NULL; - FREE( psz_href ); - FREE( psz_moviename ); - FREE( psz_qtnext ); - FREE( psz_src ); - FREE( psz_mimetype ); + free( psz_href ); + free( psz_moviename ); + free( psz_qtnext ); + free( psz_src ); + free( psz_mimetype ); return -1; /* Needed for correct operation of go back */ } diff --git a/modules/misc/profile_parser.c b/modules/misc/profile_parser.c index 5eb1dfd408..3393924ae5 100644 --- a/modules/misc/profile_parser.c +++ b/modules/misc/profile_parser.c @@ -74,7 +74,7 @@ static int Open( vlc_object_t *p_this ) return -1; case XML_READER_STARTELEM: - FREE( psz_elname ); + free( psz_elname ); psz_elname = xml_ReaderName( p_reader ); if( !psz_elname ) return VLC_EGENERIC; printf( "<%s", psz_elname ); @@ -83,7 +83,7 @@ static int Open( vlc_object_t *p_this ) case XML_READER_TEXT: break; case XML_READER_ENDELEM: - FREE( psz_elname ); + free( psz_elname ); psz_elname = xml_ReaderName( p_reader ); if( !psz_elname ) return VLC_EGENERIC; printf( ">" ); diff --git a/src/input/subtitles.c b/src/input/subtitles.c index ed1c267903..a20bcabf2e 100644 --- a/src/input/subtitles.c +++ b/src/input/subtitles.c @@ -291,8 +291,8 @@ char **subtitles_Detect( input_thread_t *p_this, char *psz_path, } if( !f_fname || !f_dir ) { - FREE( f_fname ); - FREE( f_dir ); + free( f_fname ); + free( f_dir ); return NULL; } @@ -302,10 +302,10 @@ char **subtitles_Detect( input_thread_t *p_this, char *psz_path, f_fname_trim = malloc(i_fname_len + 1 ); if( !f_fname_noext || !f_fname_trim ) { - FREE( f_fname ); - FREE( f_dir ); - FREE( f_fname_noext ); - FREE( f_fname_trim ); + free( f_fname ); + free( f_dir ); + free( f_fname_noext ); + free( f_fname_trim ); return NULL; } @@ -408,14 +408,14 @@ char **subtitles_Detect( input_thread_t *p_this, char *psz_path, if( ppsz_dir_content ) { for( a = 0; a < i_dir_content; a++ ) - FREE( ppsz_dir_content[a] ); + free( ppsz_dir_content[a] ); free( ppsz_dir_content ); } } if( subdirs ) { for( j = 0; subdirs[j]; j++ ) - FREE( subdirs[j] ); + free( subdirs[j] ); free( subdirs ); } free( f_fname ); @@ -464,8 +464,8 @@ char **subtitles_Detect( input_thread_t *p_this, char *psz_path, for( j = 0; j < i_sub_count; j++ ) { - FREE( result[j].psz_fname ); - FREE( result[j].psz_ext ); + free( result[j].psz_fname ); + free( result[j].psz_ext ); } free( result ); diff --git a/src/interface/interaction.c b/src/interface/interaction.c index 1382fdb276..5cbbe91304 100644 --- a/src/interface/interaction.c +++ b/src/interface/interaction.c @@ -302,7 +302,7 @@ void __intf_ProgressUpdate( vlc_object_t *p_this, int i_id, return; } - FREE( p_dialog->psz_description ); + free( p_dialog->psz_description ); p_dialog->psz_description = strdup( psz_status ); p_dialog->val.f_float = f_pos;