mirror of
https://github.com/mpv-player/mpv
synced 2024-12-13 10:26:00 +00:00
MPlayer OSX port: Add a call to UDFFindFile to verify that we are opening a valid udf image. Patch by Emanuele Giaquita <emanuele.giaquinta@gmail.com>
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@17491 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
parent
6325365976
commit
49880f795c
@ -465,8 +465,17 @@ static int open_s(stream_t *stream,int mode, void* opts, int* file_format) {
|
|||||||
if(!dvd) {
|
if(!dvd) {
|
||||||
mp_msg(MSGT_OPEN,MSGL_ERR,MSGTR_CantOpenDVD,temp_device);
|
mp_msg(MSGT_OPEN,MSGL_ERR,MSGTR_CantOpenDVD,temp_device);
|
||||||
} else {
|
} else {
|
||||||
|
#if DVDREAD_VERSION <= LIBDVDREAD_VERSION(0,9,4)
|
||||||
|
int len;
|
||||||
|
if(!UDFFindFile(dvd,"/",&len)) {
|
||||||
|
mp_msg(MSGT_OPEN,MSGL_ERR,MSGTR_CantOpenDVD,temp_device);
|
||||||
|
DVDClose(dvd);
|
||||||
|
} else
|
||||||
|
#endif
|
||||||
|
{
|
||||||
free(temp_device);
|
free(temp_device);
|
||||||
break;
|
break;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user