According to Marc Slemko:

>   That is bad.  If it can make Apache core dump, then Apache is broken no
>   matter what the other software may be doing wrong.

I think we already have a fix for this problem...
PR#1326 is about the same bug I think. Rainer Scherg submitted
the following patch to fix the problem:

****************************************************
diff proxy_util.c.org proxy_util.c
988a989,991
>     if (host == NULL)   /* oops! */
>       return 0;
>
1137,1138c1140,1144
<     int h2_len = strlen(host2);
<     int h1_len = strlen(host);
---
>     int h2_len;
>     int h1_len;
>
>     if (host == NULL || host2 == NULL)
>        return 0; /* oops! */
1139a1146,1148
>     h2_len = strlen(host2);
>     h1_len = strlen(host);
>                         

****************************************************


If it fixes the problem the release of 1.2.6 should wait until
the patch is committed to the 1.2 source tree.
   
Regards...
-- 
Lars Eilebrecht
[EMAIL PROTECTED]

Reply via email to