2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-31 14:35:26 +00:00

fix rt17100: don't set free callback to NULL here. This was likely early debugging code, and was an error since it is set at the beginning of each request, and should not be modified during the request.

This commit is contained in:
Michael Graff
2007-12-02 21:34:20 +00:00
parent 23de6c3ccd
commit f1e733e612

View File

@@ -14,7 +14,7 @@
* PERFORMANCE OF THIS SOFTWARE.
*/
/* $Id: httpd.c,v 1.11 2007/08/27 03:32:27 marka Exp $ */
/* $Id: httpd.c,v 1.12 2007/12/02 21:34:20 explorer Exp $ */
/*! \file */
@@ -682,7 +682,6 @@ isc_httpd_recvdone(isc_task_t *task, isc_event_t *ev)
if (isc_buffer_length(&httpd->bodybuffer) > 0)
ISC_LIST_APPEND(httpd->bufflist, &httpd->bodybuffer, link);
httpd->freecb = NULL;
result = isc_socket_sendv(httpd->sock, &httpd->bufflist, task,
isc_httpd_senddone, httpd);