Browse Source

sout: mosaic_bridge: fix psz_string leak

pull/188/head
Johannes Kauffmann 10 months ago
committed by Steve Lhomme
parent
commit
dec7b648f8
  1. 1
      modules/stream_out/mosaic_bridge.c

1
modules/stream_out/mosaic_bridge.c

@ -641,6 +641,7 @@ static int Open( vlc_object_t *p_this )
if ( vlc_fourcc_GetChromaDescription( p_sys->i_chroma ) == NULL )
{
msg_Err( p_stream, "Unknown chroma" );
free( val.psz_string );
free( p_sys );
return VLC_EINVAL;
}

Loading…
Cancel
Save