]> git.sesse.net Git - vlc/blobdiff - modules/video_filter/wall.c
Remove unnedeeded msg_Error.
[vlc] / modules / video_filter / wall.c
index 2a2b53d2035858be5a9a5ffdcad88c5854ff0c3d..3643755e5aa4a8967e4c165f97a0f342916b4823 100644 (file)
@@ -147,10 +147,7 @@ static int Create( vlc_object_t *p_this )
     /* Allocate structure */
     p_vout->p_sys = malloc( sizeof( vout_sys_t ) );
     if( p_vout->p_sys == NULL )
-    {
-        msg_Err( p_vout, "out of memory" );
         return VLC_ENOMEM;
-    }
 
     p_vout->pf_init = Init;
     p_vout->pf_end = End;
@@ -177,7 +174,6 @@ static int Create( vlc_object_t *p_this )
                                      sizeof(struct vout_list_t) );
     if( p_vout->p_sys->pp_vout == NULL )
     {
-        msg_Err( p_vout, "out of memory" );
         free( p_vout->p_sys );
         return VLC_ENOMEM;
     }