diff options
author | Alexander Lantsev <aunsane@gmail.com> | 2014-08-30 11:50:54 +0000 |
---|---|---|
committer | Alexander Lantsev <aunsane@gmail.com> | 2014-08-30 11:50:54 +0000 |
commit | bddc03714090e3710936a08a06e3e3a195b2d434 (patch) | |
tree | 27231df369124e12ae24f1961420630e2a10b7cd /protocols/Tox/src/tox_proto.cpp | |
parent | ce49c84f3a26f016f9232d2bffdc830d7fd6169f (diff) |
Tox: fix
git-svn-id: http://svn.miranda-ng.org/main/trunk@10341 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/Tox/src/tox_proto.cpp')
-rw-r--r-- | protocols/Tox/src/tox_proto.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/protocols/Tox/src/tox_proto.cpp b/protocols/Tox/src/tox_proto.cpp index 7d9a5150a4..e5bb613c8f 100644 --- a/protocols/Tox/src/tox_proto.cpp +++ b/protocols/Tox/src/tox_proto.cpp @@ -170,7 +170,7 @@ int __cdecl CToxProto::FileCancel(MCONTACT hContact, HANDLE hTransfer) std::vector<uint8_t> clientId = HexStringToData(toxId);
uint32_t number = tox_get_friend_number(tox, clientId.data());
- uint8_t fileNumber = (uint8_t)hTransfer;
+ int fileNumber = (int)hTransfer;
transfers.erase(fileNumber);
@@ -322,6 +322,7 @@ HANDLE __cdecl CToxProto::SendFile(MCONTACT hContact, const PROTOCHAR* szDescrip if (fileNumber < 0)
{
debugLogA("CToxProto::SendFilesAsync: cannot send file");
+ return NULL;
}
FileTransferParam *transfer = new FileTransferParam(fileNumber, fileName, fileSize);
|