Commit 58d6b919 authored by Pierre d'Herbemont's avatar Pierre d'Herbemont

video_output/opengllayer.m: Remove unuseful NULL check.

parent bc80bfd7
......@@ -258,7 +258,7 @@ static void End( vout_thread_t *p_vout )
/* Free the texture buffer*/
free( p_sys->pp_buffer[0] );
free( p_sys->pp_buffer[1] );
if( p_sys->pp_buffer[2] ) free( p_sys->pp_buffer[2] );
free( p_sys->pp_buffer[2] );
}
/*****************************************************************************
......
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