1
mirror of https://code.videolan.org/videolan/vlc synced 2024-09-04 09:11:33 +02:00

remove useless msg_Err() , use memset() for simplicity

This commit is contained in:
Rafaël Carré 2008-03-11 01:51:20 +01:00
parent dec4051286
commit c7caf0005d

View File

@ -115,14 +115,8 @@ static int Open ( vlc_object_t *p_this )
/* Allocate structures */
p_aout->output.p_sys = p_sys = malloc( sizeof( aout_sys_t ) );
if( p_sys == NULL )
{
msg_Err( p_aout, "out of memory" );
return VLC_ENOMEM;
}
p_sys->started = 0;
p_sys->stream = NULL;
p_sys->mainloop = NULL;
p_sys->context = NULL;
memset( p_sys, 0, sizeof( aout_sys_t ) );
PULSE_DEBUG( "Pulse start initialization");