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

postproc: remove redundant check

parent cbe001da
...@@ -275,7 +275,7 @@ static void ClosePostproc( vlc_object_t *p_this ) ...@@ -275,7 +275,7 @@ static void ClosePostproc( vlc_object_t *p_this )
/* Destroy the resources */ /* Destroy the resources */
vlc_mutex_destroy( &p_sys->lock ); vlc_mutex_destroy( &p_sys->lock );
pp_free_context( p_sys->pp_context ); pp_free_context( p_sys->pp_context );
if( p_sys->pp_mode ) pp_free_mode( p_sys->pp_mode ); pp_free_mode( p_sys->pp_mode );
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