summaryrefslogtreecommitdiff
path: root/core/net_crypto.c
diff options
context:
space:
mode:
authorirungentoo <irungentoo@gmail.com>2013-08-17 11:30:48 -0400
committerirungentoo <irungentoo@gmail.com>2013-08-17 11:30:48 -0400
commitf259ab5fa7a7175869134c05a92f569896fe85a2 (patch)
tree3f34e801bb8d7da5f9f0de4d4c79596d4202bdd3 /core/net_crypto.c
parent7d092c3467fbbcf3639ed2c698659c56b2509c31 (diff)
Fixed bug.
Diffstat (limited to 'core/net_crypto.c')
-rw-r--r--core/net_crypto.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/net_crypto.c b/core/net_crypto.c
index 2dbe12ad..7fdd035f 100644
--- a/core/net_crypto.c
+++ b/core/net_crypto.c
@@ -408,7 +408,7 @@ int realloc_cryptoconnection(uint32_t num)
408{ 408{
409 Crypto_Connection *newcrypto_connections = realloc(crypto_connections, num * sizeof(Crypto_Connection)); 409 Crypto_Connection *newcrypto_connections = realloc(crypto_connections, num * sizeof(Crypto_Connection));
410 410
411 if (newcrypto_connections == NULL) 411 if (newcrypto_connections == NULL && num != 0)
412 return -1; 412 return -1;
413 413
414 crypto_connections = newcrypto_connections; 414 crypto_connections = newcrypto_connections;