diff options
author | Alexander Lantsev <aunsane@gmail.com> | 2014-08-09 08:31:55 +0000 |
---|---|---|
committer | Alexander Lantsev <aunsane@gmail.com> | 2014-08-09 08:31:55 +0000 |
commit | 75890e784ab82dfe7e159710eceb71fe56d941e0 (patch) | |
tree | 8cdaa9f3f37a16eaf51b79ca094c385ad5d821e5 /protocols/Tox/src/tox_proto.cpp | |
parent | 2e80e1093ab6de23c33fbc1f258ce281f1e4dae6 (diff) |
Tox: fix to HexToBinString
git-svn-id: http://svn.miranda-ng.org/main/trunk@10134 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/Tox/src/tox_proto.cpp')
-rw-r--r-- | protocols/Tox/src/tox_proto.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/Tox/src/tox_proto.cpp b/protocols/Tox/src/tox_proto.cpp index 73bed91d17..8961ed679b 100644 --- a/protocols/Tox/src/tox_proto.cpp +++ b/protocols/Tox/src/tox_proto.cpp @@ -121,7 +121,7 @@ int __cdecl CToxProto::SetStatus(int iNewStatus) uint8_t *pub_key = HexToBinString(BOOTSTRAP_KEY);
res = tox_bootstrap_from_address(tox, BOOTSTRAP_ADDRESS, 0, htons(BOOTSTRAP_PORT), pub_key);
- //mir_free(pub_key);
+ mir_free(pub_key);
if (!res)
{
SetStatus(ID_STATUS_OFFLINE);
|