]> git.ipfire.org Git - thirdparty/pdns.git/commitdiff
Correct initial value of d_used
authorOtto Moerbeek <otto.moerbeek@open-xchange.com>
Tue, 29 Oct 2024 11:20:09 +0000 (12:20 +0100)
committerOtto Moerbeek <otto.moerbeek@open-xchange.com>
Tue, 29 Oct 2024 11:20:09 +0000 (12:20 +0100)
pdns/recursordist/mtasker.hh

index f52848c5495b2134e17b92a6751d3bbd696ce193..a6e30dafef15210e7839fa56981815b10f61526b 100644 (file)
@@ -181,7 +181,7 @@ private:
   size_t d_maxCachedStacks{0};
   int d_tid{0};
   int d_maxtid{0};
-  bool d_used{false}; // was d_eventkey consumed?
+  bool d_used{true}; // was d_eventkey consumed?
   enum waitstatusenum : int8_t
   {
     Error = -1,