Commit da84acd0 authored by Francois Cartegnie's avatar Francois Cartegnie

addons: fsstorage: drop empty file check.

parent 6783e38a
......@@ -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;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment