projects
/
vlc.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
22e22b6
)
sftp: fix seek for large files on 32-bit OS
author
Aleksey Vasenev
<margtu-fivt@ya.ru>
Sun, 23 Jun 2024 19:41:39 +0000
(22:41 +0300)
committer
Sebastian Ramacher
<sramacher@debian.org>
Tue, 14 Jan 2025 22:09:47 +0000
(23:09 +0100)
(cherry picked from commit
4698e0336447de8dc6f7214743082cc55b6ebd77
)
Gbp-Pq: Name 0010-sftp-fix-seek-for-large-files-on-32-bit-OS.patch
modules/access/sftp.c
patch
|
blob
|
history
diff --git
a/modules/access/sftp.c
b/modules/access/sftp.c
index 6ea58654ed4c158f005861b87edffba22582ec78..edf41fbb0bd9180b3bd615972b4b07fd95035df9 100644
(file)
--- a/
modules/access/sftp.c
+++ b/
modules/access/sftp.c
@@
-547,7
+547,7
@@
static int Seek( stream_t* p_access, uint64_t i_pos )
{
access_sys_t *sys = p_access->p_sys;
- libssh2_sftp_seek( sys->file, i_pos );
+ libssh2_sftp_seek
64
( sys->file, i_pos );
return VLC_SUCCESS;
}