From: David Reid Date: Sat, 11 Mar 2000 15:43:27 +0000 (+0000) Subject: This fixes a bug on a development version of BeOS. Not sure why but X-Git-Tag: APACHE_2_0_ALPHA_2~102 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=09223ab290ebe9a5b15f8b7d2d4082557e98efda;p=apache This fixes a bug on a development version of BeOS. Not sure why but when this is called it closes the original socket, not the accepted one. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@84740 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/server/mpm/mpmt_beos/mpmt_beos.c b/server/mpm/mpmt_beos/mpmt_beos.c index b57a4d7b6e..13eb00cb40 100644 --- a/server/mpm/mpmt_beos/mpmt_beos.c +++ b/server/mpm/mpmt_beos/mpmt_beos.c @@ -765,7 +765,9 @@ static int32 worker_thread(void * dummy) SAFE_ACCEPT(intra_mutex_off(0)); break; } +#if B_BEOS_VERSION < 0x0460 ap_clear_pool(ptrans); +#endif } ap_destroy_pool(tpool);