Commit 816e52c8 authored by Rémi Duraffort's avatar Rémi Duraffort

Fix potential memory leak.

parent 38bf881c
...@@ -100,7 +100,10 @@ sout_instance_t *sout_NewInstance( vlc_object_t *p_parent, const char *psz_dest ...@@ -100,7 +100,10 @@ sout_instance_t *sout_NewInstance( vlc_object_t *p_parent, const char *psz_dest
/* *** Allocate descriptor *** */ /* *** Allocate descriptor *** */
p_sout = vlc_custom_create( p_parent, sizeof( *p_sout ), "stream output" ); p_sout = vlc_custom_create( p_parent, sizeof( *p_sout ), "stream output" );
if( p_sout == NULL ) if( p_sout == NULL )
{
free( psz_chain );
return NULL; return NULL;
}
msg_Dbg( p_sout, "using sout chain=`%s'", psz_chain ); msg_Dbg( p_sout, "using sout chain=`%s'", psz_chain );
......
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