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:
@@ -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);
|
||||
|
||||
|
Reference in New Issue
Block a user