[vlc-commits] ftp: fix memory leaks

Rémi Denis-Courmont git at videolan.org
Thu Sep 15 13:12:06 CEST 2016


vlc | branch: master | Rémi Denis-Courmont <remi at remlab.net> | Thu Sep 15 14:11:58 2016 +0300| [3f63255470e2d4bb97c2ee427b578c05a15cc26f] | committer: Rémi Denis-Courmont

ftp: fix memory leaks

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=3f63255470e2d4bb97c2ee427b578c05a15cc26f
---

 modules/access/ftp.c | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/modules/access/ftp.c b/modules/access/ftp.c
index c30fa46..b75f1c5 100644
--- a/modules/access/ftp.c
+++ b/modules/access/ftp.c
@@ -1137,14 +1137,13 @@ static int ftp_StartStream( vlc_object_t *p_access, access_sys_t *p_sys,
     {
         if( p_sys->features.b_mlst &&
             ftp_SendCommand( p_access, p_sys, "MLSD" ) >= 0 &&
-            ftp_RecvCommand( p_access, p_sys, NULL, &psz_arg ) <= 2 )
+            ftp_RecvCommand( p_access, p_sys, NULL, NULL ) <= 2 )
         {
             msg_Dbg( p_access, "Using MLST extension to list" );
         }
         else
-
         if( ftp_SendCommand( p_access, p_sys, "NLST" ) < 0 ||
-            ftp_RecvCommand( p_access, p_sys, NULL, &psz_arg ) > 2 )
+            ftp_RecvCommand( p_access, p_sys, NULL, NULL ) > 2 )
         {
             msg_Err( p_access, "cannot list directory contents" );
             return VLC_EGENERIC;



More information about the vlc-commits mailing list