fix another memory leak

svn:r424
This commit is contained in:
Niels Provos 2007-09-10 01:37:57 +00:00
parent 7c66bf33e1
commit fc1211ed8a

View File

@ -1713,7 +1713,7 @@ server_request_free_answers(struct server_request *req)
free(victim->name);
if (victim->data)
free(victim->data);
/* XXXX free(victim?) -NM */
free(victim);
victim = next;
}
*list = NULL;