mirror of
https://github.com/isc-projects/bind9.git
synced 2026-04-22 23:01:43 -04:00
dlz_mysqldyn_mod.c: In function ‘dlz_findzonedb’:
dlz_mysqldyn_mod.c:1079:73: warning: unused parameter ‘methods’ [-Wunused-parameter]
1079 | dlz_findzonedb(void *dbdata, const char *name, dns_clientinfomethods_t *methods,
| ~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~
dlz_mysqldyn_mod.c:1080:34: warning: unused parameter ‘clientinfo’ [-Wunused-parameter]
1080 | dns_clientinfo_t *clientinfo) {
| ~~~~~~~~~~~~~~~~~~^~~~~~~~~~
dlz_mysqldyn_mod.c: In function ‘dlz_lookup’:
dlz_mysqldyn_mod.c:1111:63: warning: unused parameter ‘methods’ [-Wunused-parameter]
1111 | dns_sdlzlookup_t *lookup, dns_clientinfomethods_t *methods,
| ~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~
dlz_mysqldyn_mod.c: In function ‘build_query’:
dlz_mysqldyn_mod.c:465:19: warning: pointer ‘item’ used after ‘free’ [-Wuse-after-free]
465 | item = DLZ_LIST_NEXT(item, link))
dlz_mysqldyn_mod.c:470:17: note: call to ‘free’ here
470 | free(item);
| ^~~~~~~~~~
70 lines
2.6 KiB
C
70 lines
2.6 KiB
C
/*
|
|
* Copyright (C) Internet Systems Consortium, Inc. ("ISC")
|
|
*
|
|
* SPDX-License-Identifier: ISC
|
|
*
|
|
* Permission to use, copy, modify, and distribute this software for any purpose
|
|
* with or without fee is hereby granted, provided that the above copyright
|
|
* notice and this permission notice appear in all copies.
|
|
*
|
|
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
|
|
* REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
|
|
* AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
|
|
* INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
|
|
* LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
|
|
* OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
|
* PERFORMANCE OF THIS SOFTWARE.
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#define DLZ_LIST(type) \
|
|
struct { \
|
|
type *head, *tail; \
|
|
}
|
|
#define DLZ_LIST_INIT(list) \
|
|
do { \
|
|
(list).head = NULL; \
|
|
(list).tail = NULL; \
|
|
} while (0)
|
|
|
|
#define DLZ_LINK(type) \
|
|
struct { \
|
|
type *prev, *next; \
|
|
}
|
|
#define DLZ_LINK_INIT(elt, link) \
|
|
do { \
|
|
(elt)->link.prev = (void *)(-1); \
|
|
(elt)->link.next = (void *)(-1); \
|
|
} while (0)
|
|
|
|
#define DLZ_LIST_HEAD(list) ((list).head)
|
|
#define DLZ_LIST_TAIL(list) ((list).tail)
|
|
|
|
#define DLZ_LIST_APPEND(list, elt, link) \
|
|
do { \
|
|
if ((list).tail != NULL) \
|
|
(list).tail->link.next = (elt); \
|
|
else \
|
|
(list).head = (elt); \
|
|
(elt)->link.prev = (list).tail; \
|
|
(elt)->link.next = NULL; \
|
|
(list).tail = (elt); \
|
|
} while (0)
|
|
|
|
#define DLZ_LIST_PREV(elt, link) ((elt)->link.prev)
|
|
#define DLZ_LIST_NEXT(elt, link) ((elt)->link.next)
|
|
|
|
#define DLZ_LIST_UNLINK(list, elt, link) \
|
|
do { \
|
|
if ((elt)->link.next != NULL) \
|
|
(elt)->link.next->link.prev = (elt)->link.prev; \
|
|
else \
|
|
(list).tail = (elt)->link.prev; \
|
|
if ((elt)->link.prev != NULL) \
|
|
(elt)->link.prev->link.next = (elt)->link.next; \
|
|
else \
|
|
(list).head = (elt)->link.next; \
|
|
(elt)->link.prev = (void *)(-1); \
|
|
(elt)->link.next = (void *)(-1); \
|
|
} while (0)
|