Commit 5abd95e1 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Oups

parent e45c692c
...@@ -251,7 +251,7 @@ static int Connect( vlc_object_t *p_access, access_sys_t *p_sys ) ...@@ -251,7 +251,7 @@ static int Connect( vlc_object_t *p_access, access_sys_t *p_sys )
msg_Info( p_access, "FTP Extended passive mode disabled" ); msg_Info( p_access, "FTP Extended passive mode disabled" );
net_Close( p_sys->fd_cmd ); net_Close( p_sys->fd_cmd );
if( ( p_sys->fd_cmd = Login( p_access, p_sys ) ) < 0 ) if( Login( p_access, p_sys ) )
{ {
net_Close( p_sys->fd_cmd ); net_Close( p_sys->fd_cmd );
return -1; return -1;
...@@ -381,7 +381,7 @@ static int OutOpen( vlc_object_t *p_this ) ...@@ -381,7 +381,7 @@ static int OutOpen( vlc_object_t *p_this )
return VLC_SUCCESS; return VLC_SUCCESS;
exit_error: exit_error:
vlc_UrlClean( &p_sys->url ); vlc_UrlClean( &p_sys->url );
free( p_sys ); free( p_sys );
return VLC_EGENERIC; return VLC_EGENERIC;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment