summaryrefslogtreecommitdiffstats
path: root/src/libirecovery.c
diff options
context:
space:
mode:
authorGravatar Martin Szulecki2015-01-29 20:23:06 +0100
committerGravatar Martin Szulecki2015-01-29 20:23:06 +0100
commit16a329e152d8573aed882c8a4c0d65f403ce3a48 (patch)
tree3c8f740cbc1283a47925b56eeaf8305481459a8e /src/libirecovery.c
parent3249bc11252a3fc53b36b61def3eac27d5929e09 (diff)
downloadlibirecovery-16a329e152d8573aed882c8a4c0d65f403ce3a48.tar.gz
libirecovery-16a329e152d8573aed882c8a4c0d65f403ce3a48.tar.bz2
Add large file support
Diffstat (limited to 'src/libirecovery.c')
-rw-r--r--src/libirecovery.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/libirecovery.c b/src/libirecovery.c
index d632b63..fa0f417 100644
--- a/src/libirecovery.c
+++ b/src/libirecovery.c
@@ -1129,9 +1129,9 @@ IRECV_API irecv_error_t irecv_send_file(irecv_client_t client, const char* filen
return IRECV_E_FILE_NOT_FOUND;
}
- fseek(file, 0, SEEK_END);
- long length = ftell(file);
- fseek(file, 0, SEEK_SET);
+ fseeko(file, 0, SEEK_END);
+ long length = ftello(file);
+ fseeko(file, 0, SEEK_SET);
char* buffer = (char*) malloc(length);
if (buffer == NULL) {