X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=modules%2Faudio_output%2Fjack.c;h=c8345db4a0e325757bc0ec64a0a8179c662c8b81;hb=37a2578ce4265f4ed495290923e3fa674c662656;hp=7fb409bb2410adce6ab4348ee60f4d2d2e40609f;hpb=172e22c2f2b4abbdfee50d9fe8aaaede4b405c76;p=vlc diff --git a/modules/audio_output/jack.c b/modules/audio_output/jack.c index 7fb409bb24..c8345db4a0 100644 --- a/modules/audio_output/jack.c +++ b/modules/audio_output/jack.c @@ -108,7 +108,6 @@ static int Open( vlc_object_t *p_this ) p_sys = calloc( 1, sizeof( aout_sys_t ) ); if( p_sys == NULL ) { - msg_Err( p_aout, "out of memory" ); status = VLC_ENOMEM; goto error_out; } @@ -143,7 +142,6 @@ static int Open( vlc_object_t *p_this ) sizeof(jack_port_t *) ); if( p_sys->p_jack_ports == NULL ) { - msg_Err( p_aout, "out of memory" ); status = VLC_ENOMEM; goto error_out; } @@ -152,7 +150,6 @@ static int Open( vlc_object_t *p_this ) sizeof(jack_sample_t *) ); if( p_sys->p_jack_buffers == NULL ) { - msg_Err( p_aout, "out of memory" ); status = VLC_ENOMEM; goto error_out; }