[vlc-commits] commit: FTP: fix small memory leak in directory case ( Rémi Denis-Courmont )
git at videolan.org
git at videolan.org
Tue Aug 3 22:54:09 CEST 2010
vlc | branch: master | Rémi Denis-Courmont <remi at remlab.net> | Tue Aug 3 23:52:12 2010 +0300| [6f533a250b9e29b906788d90fe008935fe016c88] | committer: Rémi Denis-Courmont
FTP: fix small memory leak in directory case
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=6f533a250b9e29b906788d90fe008935fe016c88
---
modules/access/ftp.c | 30 ++++++++++++++++--------------
1 files changed, 16 insertions(+), 14 deletions(-)
diff --git a/modules/access/ftp.c b/modules/access/ftp.c
index 4aadde7..75d595a 100644
--- a/modules/access/ftp.c
+++ b/modules/access/ftp.c
@@ -353,26 +353,26 @@ static int InOpen( vlc_object_t *p_this )
if( p_sys->url.psz_path == NULL )
p_sys->directory = true;
else
- if( ftp_SendCommand( p_this, p_sys, "SIZE %s", p_sys->url.psz_path ) < 0
- || ftp_ReadCommand( p_this, p_sys, NULL, &psz_arg ) != 2 )
- {
- msg_Dbg( p_access, "cannot get file size" );
- msg_Dbg( p_access, "will try to get directory contents" );
- if( ftp_SendCommand( p_this, p_sys, "CWD %s", p_sys->url.psz_path ) < 0
- || ftp_ReadCommand( p_this, p_sys, NULL, &psz_arg ) != 2 )
- {
- msg_Err( p_access, "file or directory doesn't exist" );
- net_Close( p_sys->fd_cmd );
- goto exit_error;
- }
- p_sys->directory = true;
- }
+ if( ftp_SendCommand( p_this, p_sys, "SIZE %s", p_sys->url.psz_path ) < 0 )
+ goto error;
else
+ if ( ftp_ReadCommand( p_this, p_sys, NULL, &psz_arg ) == 2 )
{
p_access->info.i_size = atoll( &psz_arg[4] );
free( psz_arg );
msg_Dbg( p_access, "file size: %"PRIu64, p_access->info.i_size );
}
+ else
+ if( ftp_SendCommand( p_this, p_sys, "CWD %s", p_sys->url.psz_path ) < 0 )
+ goto error;
+ else
+ if( ftp_ReadCommand( p_this, p_sys, NULL, NULL ) != 2 )
+ {
+ msg_Err( p_access, "file or directory does not exist" );
+ goto error;
+ }
+ else
+ p_sys->directory = true;
/* Start the 'stream' */
if( ftp_StartStream( p_this, p_sys, 0 ) < 0 )
@@ -387,6 +387,8 @@ static int InOpen( vlc_object_t *p_this )
return VLC_SUCCESS;
+error:
+ net_Close( p_sys->fd_cmd );
exit_error:
vlc_UrlClean( &p_sys->url );
free( p_sys );
More information about the vlc-commits
mailing list