]> git.sesse.net Git - vlc/blobdiff - modules/video_filter/erase.c
Remove unnedeeded msg_Error.
[vlc] / modules / video_filter / erase.c
index 19d1dbafd7aaebe45483021b0fe05d80efcc10b4..d2590482f58ccb76a6937283cebe795b62f8a0de 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_sys = p_filter->p_sys;
 
     p_filter->pf_video_filter = Filter;