Commit 02c821f5 authored by Rafaël Carré's avatar Rafaël Carré

Fix double (or up to 2^sizeof(int) times)

Reported by Coverity scan : CID 142
parent 6257a24f
......@@ -448,10 +448,11 @@ static void AStreamDestroy( stream_t *s )
{
free( p_sys->list[p_sys->i_list]->psz_path );
free( p_sys->list[p_sys->i_list] );
free( p_sys->list );
}
free( s->p_sys );
free( p_sys->list );
free( p_sys );
vlc_object_release( s );
}
......
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