Commit 091de0e9 authored by Gildas Bazin's avatar Gildas Bazin

* modules/stream_out/transcode.c: added a missing vlc_object_destroy().

parent 97a71b49
...@@ -321,7 +321,7 @@ static int Open( vlc_object_t *p_this ) ...@@ -321,7 +321,7 @@ static int Open( vlc_object_t *p_this )
if( !p_sys->p_out ) if( !p_sys->p_out )
{ {
msg_Err( p_stream, "cannot create chain" ); msg_Err( p_stream, "cannot create chain" );
free( p_sys ); vlc_object_destroy( 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