]> git.sesse.net Git - vlc/blobdiff - modules/video_filter/sharpen.c
Remove unnedeeded msg_Error.
[vlc] / modules / video_filter / sharpen.c
index a1a62210b8527f12f154461a418a6410af55789d..ea5b9d03c774a3ce6c764576867d9f43fe29d9a2 100644 (file)
@@ -121,10 +121,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;