]> git.sesse.net Git - vlc/blobdiff - modules/video_filter/motionblur.c
Remove unnedeeded msg_Error.
[vlc] / modules / video_filter / motionblur.c
index cc45b5c6ab64dab5b29be84c76ffc416eb11b3b4..53ce82b2d7214953e1d7ea70e92d1f03e5fe449b 100644 (file)
@@ -96,10 +96,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;