Revert "Unconditionally remove timeouts from the queue before calling the callback."
authorGuus Sliepen <guus@tinc-vpn.org>
Tue, 27 Feb 2018 18:11:38 +0000 (19:11 +0100)
committerGuus Sliepen <guus@tinc-vpn.org>
Tue, 27 Feb 2018 18:11:38 +0000 (19:11 +0100)
This reverts commit e8a60109fc91a42420ec626b63956771675f89b0.

src/event.c

index 33d205a..331872a 100644 (file)
@@ -300,9 +300,11 @@ static struct timeval *get_time_remaining(struct timeval *diff) {
                timersub(&timeout->tv, &now, diff);
 
                if(diff->tv_sec < 0) {
-                       timeout_cb_t cb = timeout->cb;
-                       timeout_del(timeout);
-                       cb(timeout->data);
+                       timeout->cb(timeout->data);
+
+                       if(timercmp(&timeout->tv, &now, <)) {
+                               timeout_del(timeout);
+                       }
                } else {
                        tv = diff;
                        break;