From 7e5ea8ede78268b68b86f3f6d279deaf24593fb2 Mon Sep 17 00:00:00 2001 From: Kirill Volinsky Date: Sun, 10 Aug 2014 17:13:35 +0000 Subject: fixed read\write tox profile git-svn-id: http://svn.miranda-ng.org/main/trunk@10146 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- protocols/Tox/src/tox_utils.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'protocols/Tox/src/tox_utils.cpp') diff --git a/protocols/Tox/src/tox_utils.cpp b/protocols/Tox/src/tox_utils.cpp index d7c1763145..e6f1a037f8 100644 --- a/protocols/Tox/src/tox_utils.cpp +++ b/protocols/Tox/src/tox_utils.cpp @@ -66,7 +66,7 @@ char *CToxProto::DataToHexString(const uint8_t *bin_string) int CToxProto::LoadToxData(const char *path) { - FILE *hFile = fopen(path, "r"); + FILE *hFile = fopen(path, "rb"); if (hFile) { @@ -103,7 +103,7 @@ int CToxProto::LoadToxData(const char *path) int CToxProto::SaveToxData(const char *path) { - FILE *hFile = fopen(path, "w"); + FILE *hFile = fopen(path, "wb"); if (!hFile) { @@ -112,7 +112,7 @@ int CToxProto::SaveToxData(const char *path) } int res = 1; - size_t size = tox_size(tox); + uint32_t size = tox_size(tox); uint8_t *data = (uint8_t*)mir_alloc(size); tox_save(tox, data); -- cgit v1.2.3