2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-29 21:47:59 +00:00

809. [bug] Configuring a non-local address as a transfer-source

could cause an assertion failure during load.
This commit is contained in:
Brian Wellington 2001-04-16 18:50:32 +00:00
parent fa1a39a514
commit ac6afcd0ca
2 changed files with 5 additions and 1 deletions

View File

@ -1,4 +1,7 @@
809. [bug] Configuring a non-local address as a transfer-source
could cause an assertion failure during load.
808. [func] Add 'rndc flush' to flush the server's cache.
807. [bug] When setting up TCP connections for incoming zone

View File

@ -15,7 +15,7 @@
* WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
/* $Id: request.c,v 1.58 2001/03/05 21:15:42 bwelling Exp $ */
/* $Id: request.c,v 1.59 2001/04/16 18:50:32 bwelling Exp $ */
#include <config.h>
@ -467,6 +467,7 @@ new_request(isc_mem_t *mctx, dns_request_t **requestp) {
isc_mem_attach(mctx, &request->mctx);
request->magic = REQUEST_MAGIC;
*requestp = request;
return (ISC_R_SUCCESS);
}