]> git.sesse.net Git - vlc/blobdiff - src/misc/update.c
Remove msg_Err about memory allocation.
[vlc] / src / misc / update.c
index 1b7e54cbe4f1234e17b5cc71647d94a526e1f500..6d25a22aa128ac9273a0a95d4f1fa5b8a3be4e6e 100644 (file)
@@ -1452,10 +1452,7 @@ void update_Download( update_t *p_update, const char *psz_destdir )
     update_download_thread_t *p_udt = vlc_object_create( p_update->p_libvlc,
                                         sizeof( update_download_thread_t ) );
     if( !p_udt )
-    {
-        msg_Err( p_update->p_libvlc, "out of memory" );
         return;
-    }
 
     p_udt->p_update = p_update;
     p_udt->psz_destdir = psz_destdir ? strdup( psz_destdir ) : NULL;