[vlc-commits] [Git][videolan/vlc][master] sftp: fix seek for large files on 32-bit OS
Steve Lhomme (@robUx4)
gitlab at videolan.org
Thu Jun 27 09:33:19 UTC 2024
Steve Lhomme pushed to branch master at VideoLAN / VLC
Commits:
4698e033 by Aleksey Vasenev at 2024-06-27T09:07:57+00:00
sftp: fix seek for large files on 32-bit OS
- - - - -
1 changed file:
- modules/access/sftp.c
Changes:
=====================================
modules/access/sftp.c
=====================================
@@ -609,7 +609,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_seek64( sys->file, i_pos );
return VLC_SUCCESS;
}
View it on GitLab: https://code.videolan.org/videolan/vlc/-/commit/4698e0336447de8dc6f7214743082cc55b6ebd77
--
This project does not include diff previews in email notifications.
View it on GitLab: https://code.videolan.org/videolan/vlc/-/commit/4698e0336447de8dc6f7214743082cc55b6ebd77
You're receiving this email because of your account on code.videolan.org.
VideoLAN code repository instance
More information about the vlc-commits
mailing list