2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-09-02 15:45:25 +00:00

1691. [bug] sdb's attachversion was not complete. [RT #11990]

This commit is contained in:
Mark Andrews
2004-07-22 03:58:07 +00:00
parent cb75f7ce19
commit c0d2891f6e
2 changed files with 5 additions and 3 deletions

View File

@@ -1,3 +1,5 @@
1691. [bug] sdb's attachversion was not complete. [RT #11990]
1690. [placeholder] rt11714 1690. [placeholder] rt11714
1689. [bug] DNS_NAME_TOREGION() and DNS_NAME_SPLIT() macros 1689. [bug] DNS_NAME_TOREGION() and DNS_NAME_SPLIT() macros

View File

@@ -15,7 +15,7 @@
* PERFORMANCE OF THIS SOFTWARE. * PERFORMANCE OF THIS SOFTWARE.
*/ */
/* $Id: sdb.c,v 1.45 2004/03/05 05:09:24 marka Exp $ */ /* $Id: sdb.c,v 1.46 2004/07/22 03:58:07 marka Exp $ */
#include <config.h> #include <config.h>
@@ -629,10 +629,10 @@ attachversion(dns_db_t *db, dns_dbversion_t *source,
dns_dbversion_t **targetp) dns_dbversion_t **targetp)
{ {
REQUIRE(source != NULL && source == (void *) &dummy); REQUIRE(source != NULL && source == (void *) &dummy);
REQUIRE(targetp != NULL && *targetp == NULL);
UNUSED(db); UNUSED(db);
UNUSED(source); *targetp = source;
UNUSED(targetp);
return; return;
} }