]> git.sesse.net Git - vlc/blobdiff - modules/video_filter/noise.c
Remove unnedeeded msg_Error.
[vlc] / modules / video_filter / noise.c
index eb26d3b4946adafd625c75b47333670334698a59..030ca2ba1ea96a5fa0a3f60a0461c3a90a7d670b 100644 (file)
@@ -83,10 +83,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;