From: W.C.A. Wijngaards Date: Wed, 11 Oct 2023 09:59:26 +0000 (+0200) Subject: - Fix #949: "could not create control compt". X-Git-Tag: release-1.19.0rc1~32 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=d5954aff084f19ec239ffca91415ec3d87f28c27;p=thirdparty%2Funbound.git - Fix #949: "could not create control compt". --- diff --git a/doc/Changelog b/doc/Changelog index 40da8e55c..d1e3b6846 100644 --- a/doc/Changelog +++ b/doc/Changelog @@ -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. diff --git a/libunbound/python/libunbound.i b/libunbound/python/libunbound.i index 0cdb3d7e5..dc125146c 100644 --- a/libunbound/python/libunbound.i +++ b/libunbound/python/libunbound.i @@ -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; }; %}