mirror of
https://github.com/isc-projects/bind9.git
synced 2026-06-09 09:42:06 -04:00
client_request was not freeing its event.
This commit is contained in:
parent
2305225a1c
commit
4239aef2fb
1 changed files with 4 additions and 1 deletions
|
|
@ -15,7 +15,7 @@
|
|||
* WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
||||
*/
|
||||
|
||||
/* $Id: client.c,v 1.143 2001/01/29 19:49:48 bwelling Exp $ */
|
||||
/* $Id: client.c,v 1.144 2001/02/06 02:43:42 bwelling Exp $ */
|
||||
|
||||
#include <config.h>
|
||||
|
||||
|
|
@ -1462,6 +1462,9 @@ client_request(isc_task_t *task, isc_event_t *event) {
|
|||
cleanup_serverlock:
|
||||
dns_zonemgr_unlockconf(ns_g_server->zonemgr, isc_rwlocktype_read);
|
||||
RWUNLOCK(&ns_g_server->conflock, isc_rwlocktype_read);
|
||||
|
||||
if (event != NULL)
|
||||
isc_event_free(&event);
|
||||
}
|
||||
|
||||
static void
|
||||
|
|
|
|||
Loading…
Reference in a new issue