mirror of
https://github.com/isc-projects/bind9.git
synced 2026-06-10 16:10:01 -04:00
809. [bug] Configuring a non-local address as a transfer-source
could cause an assertion failure during load.
This commit is contained in:
parent
fa1a39a514
commit
ac6afcd0ca
2 changed files with 5 additions and 1 deletions
3
CHANGES
3
CHANGES
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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);
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue