1
mirror of https://code.videolan.org/videolan/vlc synced 2024-08-31 06:46:39 +02:00

Fix potential object leak.

This commit is contained in:
Rémi Duraffort 2009-10-10 12:01:31 +02:00
parent 0b8ec7ae14
commit 6feec1a07b

View File

@ -408,6 +408,7 @@ static int Open( vlc_object_t * p_this )
{
free( psz_ref );
free( psz_path );
vlc_object_release( p_input) ;
return VLC_ENOMEM;
}