summaryrefslogtreecommitdiff
path: root/protocols/Tox/src/tox_address.h
diff options
context:
space:
mode:
authorAlexander Lantsev <aunsane@gmail.com>2015-02-15 16:21:39 +0000
committerAlexander Lantsev <aunsane@gmail.com>2015-02-15 16:21:39 +0000
commitacf80f676b629849e5a920f1cd07df463e741d4b (patch)
tree2b278912901cf6a7006f0bc612193a9f7c41f5ae /protocols/Tox/src/tox_address.h
parente6fd14cf522fe0309a21aea84bfe2c9b9ee0eedb (diff)
Tox: check public key on null
git-svn-id: http://svn.miranda-ng.org/main/trunk@12128 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/Tox/src/tox_address.h')
-rw-r--r--protocols/Tox/src/tox_address.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/protocols/Tox/src/tox_address.h b/protocols/Tox/src/tox_address.h
index d205eb731e..a4b152427d 100644
--- a/protocols/Tox/src/tox_address.h
+++ b/protocols/Tox/src/tox_address.h
@@ -53,11 +53,6 @@ public:
}
ToxBinAddress(const char *hex)
{
- if (hex == NULL) {
- binData.resize(32);
- return;
- }
-
char *endptr;
const char *pos = hex;
int size = mir_strlen(hex) / 2;