mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2024-12-28 02:12:28 +00:00
Replace lstat() with stat() in av_file_map(). The lstat() use was wrong.
Originally committed as revision 26074 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
0328b9ea39
commit
1b31037d62
@ -54,7 +54,7 @@ int av_file_map(const char *filename, uint8_t **bufptr, size_t *size,
|
||||
return err;
|
||||
}
|
||||
|
||||
if (lstat(filename, &st) < 0) {
|
||||
if (stat(filename, &st) < 0) {
|
||||
err = AVERROR(errno);
|
||||
av_strerror(err, errbuf, sizeof(errbuf));
|
||||
av_log(&file_log_ctx, AV_LOG_ERROR, "Error occurred in lstat(): %s\n", errbuf);
|
||||
|
Loading…
Reference in New Issue
Block a user