]> git.sesse.net Git - vlc/blobdiff - modules/video_filter/clone.c
Remove silly out of memory message in out of memory situation.
[vlc] / modules / video_filter / clone.c
index 1cbfb4790d08501535c43c2c9274c0deca485b41..b6d48320544b72263db46a90890b117fbd47e93a 100644 (file)
@@ -127,10 +127,7 @@ static int Create( vlc_object_t *p_this )
     /* Allocate structure */
     p_vout->p_sys = malloc( sizeof( vout_sys_t ) );
     if( p_vout->p_sys == NULL )
-    {
-        msg_Err( p_vout, "out of memory" );
         return VLC_ENOMEM;
-    }
 
     p_vout->pf_init = Init;
     p_vout->pf_end = End;