Commit 17e8ab51 authored by Rémi Duraffort's avatar Rémi Duraffort

Cleaning.

parent dec93783
......@@ -272,7 +272,10 @@ static int CreateVout( vlc_object_t *p_this )
p_sys->p_vout =
(vout_thread_t *)vlc_object_create( p_this, sizeof( vout_thread_t ) );
if( p_sys->p_vout == NULL )
{
free( p_sys );
return VLC_ENOMEM;
}
vlc_object_attach( p_sys->p_vout, p_this );
p_sys->p_vout->i_window_width = p_vout->i_window_width;
......
......@@ -142,10 +142,7 @@ static int CreateVout( vlc_object_t *p_this )
/* Allocate structure */
p_vout->p_sys = p_sys = calloc( sizeof( vout_sys_t ), 1 );
if( p_sys == NULL )
{
msg_Err( p_vout, "out of memory" );
return VLC_EGENERIC;
}
p_sys->i_tex_width = p_vout->fmt_in.i_width;
p_sys->i_tex_height = p_vout->fmt_in.i_height;
......@@ -204,10 +201,7 @@ static int Init( vout_thread_t *p_vout )
p_sys->pp_buffer[i] =
malloc( p_sys->i_tex_width * p_sys->i_tex_height * i_pixel_pitch );
if( !p_sys->pp_buffer[i] )
{
msg_Err( p_vout, "out of memory" );
return VLC_EGENERIC;
}
}
p_sys->b_frame_available = false;
p_sys->i_index = 0;
......
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