From: Karthick Jeyapal <[email protected]>
Fixes bug id : 7638
---
libavformat/file.c | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/libavformat/file.c b/libavformat/file.c
index 1d321c4..e613b91 100644
--- a/libavformat/file.c
+++ b/libavformat/file.c
@@ -173,7 +173,11 @@ static int file_delete(URLContext *h)
av_strstart(filename, "file:", &filename);
ret = rmdir(filename);
- if (ret < 0 && errno == ENOTDIR)
+ if (ret < 0 && (errno == ENOTDIR
+# ifdef _WIN32
+ || errno == EINVAL
+# endif
+ ))
ret = unlink(filename);
if (ret < 0)
return AVERROR(errno);
--
2.7.4
_______________________________________________
ffmpeg-devel mailing list
[email protected]
http://ffmpeg.org/mailman/listinfo/ffmpeg-devel