From 8aa4246ddef30c0e114362b6ef2a8e6ee0ed3817 Mon Sep 17 00:00:00 2001 From: Nikias Bassen Date: Sat, 2 Feb 2019 03:15:25 +0100 Subject: win32: Use _lseeki64 instead of _fseeki64/_ftelli64 and don't link against msvcr100.dll What a mess it is, all these msvcr*.dll - incompatible without limits --- src/asr.c | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) (limited to 'src/asr.c') diff --git a/src/asr.c b/src/asr.c index 9fcb6b3..3800c2b 100644 --- a/src/asr.c +++ b/src/asr.c @@ -205,9 +205,8 @@ int asr_perform_validation(asr_client_t asr, const char* filesystem) { } #ifdef WIN32 - _fseeki64(file, 0, SEEK_END); - length = _ftelli64(file); - _fseeki64(file, 0, SEEK_SET); + length = _lseeki64(fileno(file), 0, SEEK_END); + _lseeki64(fileno(file), 0, SEEK_SET); #else fseeko(file, 0, SEEK_END); length = ftello(file); @@ -307,7 +306,7 @@ int asr_handle_oob_data_request(asr_client_t asr, plist_t packet, FILE* file) { } #ifdef WIN32 - _fseeki64(file, oob_offset, SEEK_SET); + _lseeki64(fileno(file), oob_offset, SEEK_SET); #else fseeko(file, oob_offset, SEEK_SET); #endif @@ -341,9 +340,8 @@ int asr_send_payload(asr_client_t asr, const char* filesystem) { } #ifdef WIN32 - _fseeki64(file, 0, SEEK_END); - length = _ftelli64(file); - _fseeki64(file, 0, SEEK_SET); + length = _lseeki64(fileno(file), 0, SEEK_END); + _lseeki64(fileno(file), 0, SEEK_SET); #else fseeko(file, 0, SEEK_END); length = ftello(file); -- cgit v1.1-32-gdbae