]> git.sesse.net Git - vlc/blobdiff - modules/video_filter/gradient.c
Remove unnedeeded msg_Error.
[vlc] / modules / video_filter / gradient.c
index c989023bfa10279e5dbe9c937f9156f791adcae1..e060b3f73c044025edd68a07df8ffa01433916c7 100644 (file)
@@ -146,10 +146,7 @@ static int Create( vlc_object_t *p_this )
     /* Allocate structure */
     p_filter->p_sys = malloc( sizeof( filter_sys_t ) );
     if( p_filter->p_sys == NULL )
-    {
-        msg_Err( p_filter, "out of memory" );
         return VLC_ENOMEM;
-    }
 
     p_filter->pf_video_filter = Filter;