From 2e5a85056b19ee2d968703b5dd8b92f1c831cfac Mon Sep 17 00:00:00 2001 From: arvidn Date: Sun, 16 Aug 2015 20:45:54 -0400 Subject: [PATCH] fix uninitialized variable in test_dht (would cause stall) --- simulation/test_dht.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/simulation/test_dht.cpp b/simulation/test_dht.cpp index f3a6577d0..1278facb8 100644 --- a/simulation/test_dht.cpp +++ b/simulation/test_dht.cpp @@ -47,6 +47,7 @@ struct network_config : network_setup_provider { network_config() : m_start_time(lt::clock_type::now()) + , m_ticks(0) {} virtual void on_exit() override final {}