]> git.ipfire.org Git - thirdparty/unbound.git/commitdiff
- Fix #949: "could not create control compt".
authorW.C.A. Wijngaards <wouter@nlnetlabs.nl>
Wed, 11 Oct 2023 09:59:26 +0000 (11:59 +0200)
committerW.C.A. Wijngaards <wouter@nlnetlabs.nl>
Wed, 11 Oct 2023 09:59:26 +0000 (11:59 +0200)
doc/Changelog
libunbound/python/libunbound.i

index 40da8e55c101ac63e37f76aab4ecd8fe21177a25..d1e3b684626b7a67ad700d75f53ad32e43c46256 100644 (file)
@@ -2,6 +2,9 @@
        - Fix #850: [FR] Ability to use specific database in Redis, with new
          redis-logical-db configuration option.
 
+11 October 2023: Wouter
+       - Fix #949: "could not create control compt".
+
 10 October 2023: George
        - Fix infinite loop when reading multiple lines of input on a broken
          remote control socket. Addesses #947 and #948.
index 0cdb3d7e59d612dc302c3bd8f3ac105e9eb3381d..dc125146c0f04b1a7754a1bbbca453b1be2f8737 100644 (file)
@@ -863,6 +863,9 @@ Result: ['74.125.43.147', '74.125.43.99', '74.125.43.103', '74.125.43.104']
 %inline %{
   //SWIG will see the ub_ctx as a class
   struct ub_ctx {
+          /* Dummy member, so the struct is not empty, MSVC complains about
+           * that. */
+          int dummy;
   };
 %}