]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
fix: dev: Enforce type checking for dns_dbnode_t
authorOndřej Surý <ondrej@isc.org>
Wed, 6 Nov 2024 17:05:03 +0000 (17:05 +0000)
committerOndřej Surý <ondrej@isc.org>
Wed, 6 Nov 2024 17:05:03 +0000 (17:05 +0000)
Originally, the dns_dbnode_t was typedef'ed to void type.  This allowed
some flexibility, but using (void *) just removes any type-checking that
C might have.  Instead of using:

    typedef void dns_dbnode_t;

use a trick to define the type to non-existing structure:

    typedef struct dns_dbnode dns_dbnode_t;

This allows the C compilers to employ the type-checking while the
structure itself doesn't have to be ever defined because the actual
'storage' is never accessed using dns_dbnode_t type.

Merge branch 'ondrej/non-void-dns_dbnode_t' into 'main'

See merge request isc-projects/bind9!9719


Trivial merge