summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--toxcore/DHT.c2
-rw-r--r--toxcore/onion_client.c2
2 files changed, 3 insertions, 1 deletions
diff --git a/toxcore/DHT.c b/toxcore/DHT.c
index db03def1..52664218 100644
--- a/toxcore/DHT.c
+++ b/toxcore/DHT.c
@@ -2331,6 +2331,8 @@ void kill_DHT(DHT *dht)
2331 ping_array_free_all(&dht->dht_harden_ping_array); 2331 ping_array_free_all(&dht->dht_harden_ping_array);
2332 kill_ping(dht->ping); 2332 kill_ping(dht->ping);
2333 free(dht->friends_list); 2333 free(dht->friends_list);
2334 free(dht->loaded_friends_list);
2335 free(dht->loaded_clients_list);
2334 free(dht); 2336 free(dht);
2335} 2337}
2336 2338
diff --git a/toxcore/onion_client.c b/toxcore/onion_client.c
index 1395fc07..24949aff 100644
--- a/toxcore/onion_client.c
+++ b/toxcore/onion_client.c
@@ -149,7 +149,7 @@ static int is_path_used(const Onion_Client_Paths *onion_paths, const Node_format
149} 149}
150 150
151/* Create a new path or use an old suitable one (if pathnum is valid) 151/* Create a new path or use an old suitable one (if pathnum is valid)
152 * or a rondom one from onion_paths. 152 * or a random one from onion_paths.
153 * 153 *
154 * return -1 on failure 154 * return -1 on failure
155 * return 0 on success 155 * return 0 on success