Commit 82b9112d authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

normvol: do not handle impossible error

Open fails if p_sys is NULL.
parent 22cc9dae
...@@ -253,9 +253,6 @@ static void Close( vlc_object_t *p_this ) ...@@ -253,9 +253,6 @@ static void Close( vlc_object_t *p_this )
aout_filter_t *p_filter = (aout_filter_t*)p_this; aout_filter_t *p_filter = (aout_filter_t*)p_this;
aout_filter_sys_t *p_sys = p_filter->p_sys; aout_filter_sys_t *p_sys = p_filter->p_sys;
if( p_sys )
{
free( p_sys->p_last ); free( p_sys->p_last );
free( p_sys ); free( p_sys );
}
} }
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