mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-21 10:55:51 +02:00
file: fix 10l error in access() check
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
51d6879939
commit
257196209f
@ -85,7 +85,7 @@ static int file_get_handle(URLContext *h)
|
||||
|
||||
static int file_check(URLContext *h, int mask)
|
||||
{
|
||||
#if defined(HAVE_ACCESS) && defined(R_OK)
|
||||
#if HAVE_ACCESS && defined(R_OK)
|
||||
int ret = 0;
|
||||
if (access(h->filename, F_OK) < 0)
|
||||
return AVERROR(errno);
|
||||
|
Loading…
Reference in New Issue
Block a user