]> git.sesse.net Git - vlc/blobdiff - modules/video_filter/invert.c
Remove silly out of memory message in out of memory situation.
[vlc] / modules / video_filter / invert.c
index b6a566905fc78581a2948a9beeb525881275d9e6..acf093ea0fa642ac2eebf2a1d65e5da000d2289b 100644 (file)
@@ -79,10 +79,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;