]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
fix rt17100: don't set free callback to NULL here. This was likely early debugging...
authorMichael Graff <mgraff@isc.org>
Sun, 2 Dec 2007 21:34:20 +0000 (21:34 +0000)
committerMichael Graff <mgraff@isc.org>
Sun, 2 Dec 2007 21:34:20 +0000 (21:34 +0000)
lib/isc/httpd.c

index fe0beba12d96e483b2e3cb4651096ad0b8d0427d..36ac12c6e86aca38c0ad370b8c1db7948e81fa0b 100644 (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);