Commit 400c04b9 authored by Laurent Aimar's avatar Laurent Aimar

Do not block (non interruptible) in dvdnav on fifo.

parent dd0a041b
...@@ -1436,7 +1436,7 @@ static int ProbeDVD( demux_t *p_demux, char *psz_name ) ...@@ -1436,7 +1436,7 @@ static int ProbeDVD( demux_t *p_demux, char *psz_name )
return VLC_SUCCESS; return VLC_SUCCESS;
} }
if( (i_fd = open( psz_name, O_RDONLY )) == -1 ) if( (i_fd = utf8_open( psz_name, O_RDONLY |O_NONBLOCK, 0666 )) == -1 )
{ {
return VLC_SUCCESS; /* Let dvdnav_open() do the probing */ return VLC_SUCCESS; /* Let dvdnav_open() do the probing */
} }
...@@ -1444,6 +1444,9 @@ static int ProbeDVD( demux_t *p_demux, char *psz_name ) ...@@ -1444,6 +1444,9 @@ static int ProbeDVD( demux_t *p_demux, char *psz_name )
if( fstat( i_fd, &stat_info ) || !S_ISREG( stat_info.st_mode ) ) if( fstat( i_fd, &stat_info ) || !S_ISREG( stat_info.st_mode ) )
{ {
close( i_fd ); close( i_fd );
if( S_ISFIFO( stat_info.st_mode ) )
return VLC_EGENERIC;
return VLC_SUCCESS; /* Let dvdnav_open() do the probing */ return VLC_SUCCESS; /* Let dvdnav_open() do the probing */
} }
......
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