From 55dd0f94e6124dab8b9fc7c814c3cd4c3fa54a95 Mon Sep 17 00:00:00 2001 From: Andreas Gustafsson Date: Thu, 9 Sep 1999 06:55:35 +0000 Subject: [PATCH] typo caused SIGs to leak memory instead of being added to response --- bin/named/query.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/named/query.c b/bin/named/query.c index b200e57cd8..5a09814669 100644 --- a/bin/named/query.c +++ b/bin/named/query.c @@ -828,7 +828,7 @@ query_addrrset(ns_client_t *client, dns_name_t **namep, /* * We have a signature. Add it to the response. */ - ISC_LIST_APPEND(mname->list, rdataset, link); + ISC_LIST_APPEND(mname->list, sigrdataset, link); *sigrdatasetp = NULL; } }