diff options
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);
|