mirror of
https://github.com/isc-projects/bind9.git
synced 2026-04-28 09:37:10 -04:00
1282. [bug] ns_server_destroy() failed to set *serverp to NULL.
This commit is contained in:
parent
b20f197e12
commit
88c2b83cc5
2 changed files with 4 additions and 1 deletions
2
CHANGES
2
CHANGES
|
|
@ -1,3 +1,5 @@
|
|||
1282. [bug] ns_server_destroy() failed to set *serverp to NULL.
|
||||
|
||||
1281. [func] libbind: ns_sign2() and ns_sign_tcp() now provide
|
||||
support for compressed TSIG owner names.
|
||||
|
||||
|
|
|
|||
|
|
@ -15,7 +15,7 @@
|
|||
* WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
||||
*/
|
||||
|
||||
/* $Id: server.c,v 1.375 2002/05/03 05:28:21 marka Exp $ */
|
||||
/* $Id: server.c,v 1.376 2002/05/08 04:45:40 marka Exp $ */
|
||||
|
||||
#include <config.h>
|
||||
|
||||
|
|
@ -2357,6 +2357,7 @@ ns_server_destroy(ns_server_t **serverp) {
|
|||
|
||||
server->magic = 0;
|
||||
isc_mem_put(server->mctx, server, sizeof(*server));
|
||||
*serverp = NULL;
|
||||
}
|
||||
|
||||
static void
|
||||
|
|
|
|||
Loading…
Reference in a new issue