1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2024-12-23 12:43:46 +02:00

fixed 'file:' in URLs

Originally committed as revision 1290 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Fabrice Bellard 2002-11-29 19:19:47 +00:00
parent a382b927ed
commit a1dfc201bd

View File

@ -35,6 +35,8 @@ static int file_open(URLContext *h, const char *filename, int flags)
int access; int access;
int fd; int fd;
strstart(filename, "file:", &filename);
if (flags & URL_WRONLY) { if (flags & URL_WRONLY) {
access = O_CREAT | O_TRUNC | O_WRONLY; access = O_CREAT | O_TRUNC | O_WRONLY;
} else { } else {