]> git.sesse.net Git - vlc/blobdiff - modules/video_filter/extract.c
Remove unnedeeded msg_Error.
[vlc] / modules / video_filter / extract.c
index f08477f3fed1993bdc23ff4b967fa9c26e836208..05db7c876ccc8872d54fbebad9229ca0fd9b69d6 100644 (file)
@@ -127,15 +127,11 @@ 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->p_sys->projection_matrix = malloc( 9 * sizeof( int ) );
     if( !p_filter->p_sys->projection_matrix )
     {
         free( p_filter->p_sys );
-        msg_Err( p_filter, "out of memory" );
         return VLC_ENOMEM;
     }