https://issues.apache.org/bugzilla/show_bug.cgi?id=44381
Ruediger Pluem <[EMAIL PROTECTED]> changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|ASSIGNED |NEEDINFO
--- Comment #31 from Ruediger Pluem <[EMAIL PROTECTED]> 2008-03-12 14:51:29
PST ---
(In reply to comment #30)
>
> Stack dumps repeated many times over the course of several minutes continue to
> show the same backtrace for thread 234. Also, this bug is semi-reproducible. I
> have been able to provoke 100% CPU utilization by browsing
> lonelywivesdatingclub.com.
>
Can you please check if the following patch fixes your problem?
Index: modules/http/http_filters.c
===================================================================
--- modules/http/http_filters.c (Revision 636503)
+++ modules/http/http_filters.c (Arbeitskopie)
@@ -425,6 +425,10 @@
(APR_STATUS_IS_EAGAIN(rv)) )) {
return APR_EAGAIN;
}
+ /* If we get an error, then leave */
+ if (rv != APR_SUCCESS) {
+ return rv;
+ }
/*
* We really don't care whats on this line. If it is RFC
* compliant it should be only \r\n. If there is more
--
Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]