dvdnav: trivially avoid duplicate file path lookup

This commit is contained in:
Rémi Denis-Courmont 2009-01-11 16:40:13 +02:00
parent f11f8a6098
commit 4f34578d6d
1 changed files with 7 additions and 8 deletions

View File

@ -1435,16 +1435,15 @@ static int ProbeDVD( demux_t *p_demux, char *psz_name )
return VLC_SUCCESS;
}
if( stat( psz_name, &stat_info ) || !S_ISREG( stat_info.st_mode ) )
{
/* Let dvdnav_open() do the probing */
return VLC_SUCCESS;
}
if( (i_fd = open( psz_name, O_RDONLY )) == -1 )
{
/* Let dvdnav_open() do the probing */
return VLC_SUCCESS;
return VLC_SUCCESS; /* Let dvdnav_open() do the probing */
}
if( fstat( i_fd, &stat_info ) || !S_ISREG( stat_info.st_mode ) )
{
close( i_fd );
return VLC_SUCCESS; /* Let dvdnav_open() do the probing */
}
/* Try to find the anchor (2 bytes at LBA 256) */