]> git.meshlink.io Git - meshlink/blobdiff - src/net.c
Fix crash when handling the ALRM signal.
[meshlink] / src / net.c
index 58db16e29f1d26778a6a649adcea0af1f49b448f..863dd762c326c885312a88d703f157f2ae4fc0ed 100644 (file)
--- a/src/net.c
+++ b/src/net.c
@@ -145,8 +145,10 @@ void terminate_connection(connection_t *c, bool report) {
        /* Check if this was our outgoing connection */
 
        if(c->outgoing) {
-               do_outgoing_connection(c);      
-       }
+               do_outgoing_connection(c);
+       } else {
+               connection_del(c);
+        }
 }
 
 /*
@@ -339,9 +341,10 @@ int reload_configuration(void) {
 
 void retry(void) {
        connection_t *c;
-       splay_node_t *node;
+       splay_node_t *node, *next;
 
-       for(node = connection_tree->head; node; node = node->next) {
+       for(node = connection_tree->head; node; node = next) {
+               next = node->next;
                c = node->data;
                
                if(c->outgoing && !c->node) {