Commit 68684aa4 authored by Laurent Aimar's avatar Laurent Aimar

Fixed typo in avformat access.

parent e193887a
...@@ -153,7 +153,7 @@ static int Seek(access_t *access, uint64_t position) ...@@ -153,7 +153,7 @@ static int Seek(access_t *access, uint64_t position)
{ {
access_sys_t *sys = access->p_sys; access_sys_t *sys = access->p_sys;
if (position >= INT64_MIN || if (position > INT64_MAX ||
url_seek(sys->context, position, SEEK_SET) < 0) { url_seek(sys->context, position, SEEK_SET) < 0) {
msg_Err(access, "Seek to %"PRIu64" failed\n", position); msg_Err(access, "Seek to %"PRIu64" failed\n", position);
if (access->info.i_size <= 0 || position != access->info.i_size) if (access->info.i_size <= 0 || position != access->info.i_size)
......
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