diff options
author | Nikias Bassen | 2019-02-14 01:33:35 +0100 |
---|---|---|
committer | Nikias Bassen | 2019-02-14 01:33:35 +0100 |
commit | 71cc441b9e742c135b19bda941f384bcaf052112 (patch) | |
tree | 0883e54b4c7c732c2058829d4d3801426f5b9ce9 /src | |
parent | 15b85554808e51d3009f3742b1800620a217b149 (diff) | |
download | idevicerestore-71cc441b9e742c135b19bda941f384bcaf052112.tar.gz idevicerestore-71cc441b9e742c135b19bda941f384bcaf052112.tar.bz2 |
win32: Workaround for _lseeki64 not seeking as expected...
NO COMMENT
Diffstat (limited to 'src')
-rw-r--r-- | src/asr.c | 3 | ||||
-rw-r--r-- | src/download.c | 1 |
2 files changed, 4 insertions, 0 deletions
@@ -207,6 +207,7 @@ int asr_perform_validation(asr_client_t asr, const char* filesystem) { #ifdef WIN32 length = _lseeki64(fileno(file), 0, SEEK_END); _lseeki64(fileno(file), 0, SEEK_SET); + rewind(file); #else fseeko(file, 0, SEEK_END); length = ftello(file); @@ -306,6 +307,7 @@ int asr_handle_oob_data_request(asr_client_t asr, plist_t packet, FILE* file) { } #ifdef WIN32 + rewind(file); _lseeki64(fileno(file), oob_offset, SEEK_SET); #else fseeko(file, oob_offset, SEEK_SET); @@ -342,6 +344,7 @@ int asr_send_payload(asr_client_t asr, const char* filesystem) { #ifdef WIN32 length = _lseeki64(fileno(file), 0, SEEK_END); _lseeki64(fileno(file), 0, SEEK_SET); + rewind(file); #else fseeko(file, 0, SEEK_END); length = ftello(file); diff --git a/src/download.c b/src/download.c index b50abc1..2194091 100644 --- a/src/download.c +++ b/src/download.c @@ -140,6 +140,7 @@ int download_to_file(const char* url, const char* filename, int enable_progress) curl_easy_cleanup(handle); #ifdef WIN32 + fflush(f); uint64_t sz = _lseeki64(fileno(f), 0, SEEK_CUR); #else off_t sz = ftello(f); |