telnet.c: a few more minor (potensial) memleaks

parent 8dc4f35a
...@@ -193,6 +193,8 @@ static int Open( vlc_object_t *p_this ) ...@@ -193,6 +193,8 @@ static int Open( vlc_object_t *p_this )
== NULL ) == NULL )
{ {
msg_Err( p_intf, "cannot listen for telnet" ); msg_Err( p_intf, "cannot listen for telnet" );
vlc_UrlClean(&url);
free( psz_address );
free( p_intf->p_sys ); free( p_intf->p_sys );
return VLC_EGENERIC; return VLC_EGENERIC;
} }
...@@ -205,6 +207,7 @@ static int Open( vlc_object_t *p_this ) ...@@ -205,6 +207,7 @@ static int Open( vlc_object_t *p_this )
p_intf->p_sys->mediatheque = mediatheque; p_intf->p_sys->mediatheque = mediatheque;
p_intf->pf_run = Run; p_intf->pf_run = Run;
vlc_UrlClean(&url);
free( psz_address ); free( psz_address );
return VLC_SUCCESS; return VLC_SUCCESS;
} }
......
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