]> git.sesse.net Git - vlc/blobdiff - src/video_output/video_output.c
Remove silly out of memory message in out of memory situation.
[vlc] / src / video_output / video_output.c
index 9a0b0884f02decae2bf67428dab28d7d8ecfb778..6be0dbc9be5096a0de59bd4ba9b464160e59ff26 100644 (file)
@@ -245,10 +245,7 @@ vout_thread_t * __vout_Create( vlc_object_t *p_parent, video_format_t *p_fmt )
     /* Allocate descriptor */
     p_vout = vlc_object_create( p_parent, VLC_OBJECT_VOUT );
     if( p_vout == NULL )
-    {
-        msg_Err( p_parent, "out of memory" );
         return NULL;
-    }
 
     /* Initialize pictures - translation tables and functions
      * will be initialized later in InitThread */