Commit f02cbc45 authored by Stefano Sabatini's avatar Stefano Sabatini

Fix av_file_map(): replace stat(filename, &st) with fstat(fd, &st).

The file might be replaced between open() and stat().
Spotted by Mans.

Originally committed as revision 26075 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 1b31037d
...@@ -54,10 +54,10 @@ int av_file_map(const char *filename, uint8_t **bufptr, size_t *size, ...@@ -54,10 +54,10 @@ int av_file_map(const char *filename, uint8_t **bufptr, size_t *size,
return err; return err;
} }
if (stat(filename, &st) < 0) { if (fstat(fd, &st) < 0) {
err = AVERROR(errno); err = AVERROR(errno);
av_strerror(err, errbuf, sizeof(errbuf)); av_strerror(err, errbuf, sizeof(errbuf));
av_log(&file_log_ctx, AV_LOG_ERROR, "Error occurred in lstat(): %s\n", errbuf); av_log(&file_log_ctx, AV_LOG_ERROR, "Error occurred in fstat(): %s\n", errbuf);
close(fd); close(fd);
return err; return err;
} }
......
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