]> git.sesse.net Git - vlc/commitdiff
addons: fsstorage: drop empty file check.
authorFrancois Cartegnie <fcvlcdev@free.fr>
Sun, 9 Feb 2014 20:37:58 +0000 (21:37 +0100)
committerFrancois Cartegnie <fcvlcdev@free.fr>
Sun, 9 Feb 2014 20:37:58 +0000 (21:37 +0100)
modules/misc/addons/fsstorage.c

index d6147afda40580eced04a1cd797a68edf16412a5..6b9a06c5d4160f3a28ef53230ecdebcef6d2cbad 100644 (file)
@@ -641,7 +641,7 @@ static int LoadCatalog( addons_finder_t *p_finder )
     int i_filetype = -1;
 
     struct stat stat_;
-    if ( vlc_stat( psz_path, &stat_ ) || !stat_.st_blocks )
+    if ( vlc_stat( psz_path, &stat_ ) )
     {
         free( psz_path );
         return VLC_EGENERIC;