You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@httpd.apache.org by jean-frederic clere <jf...@fujitsu-siemens.com> on 2004/07/07 17:54:32 UTC

[PATCH] mod_charset_lite.c

Hi,

When using mod_jk2 and mod_charset_lite mod_charset_lite cores because 
r->filename is NULL.
The easy patch is attached.

Cheers

Jean-Frederic

Re: [PATCH] mod_charset_lite.c

Posted by jean-frederic clere <jf...@fujitsu-siemens.com>.
Jeff Trawick wrote:
> jean-frederic clere wrote:
> 
>> Hi,
>>
>> When using mod_jk2 and mod_charset_lite mod_charset_lite cores because 
>> r->filename is NULL.
> 
> 
> patch looks reasonable...  unfortunately, I lifted some bad style from 
> somewhere (the code around your patch)...  I'll fix that up and then 
> commit the appropriate patch

I have to fix a little more in the file because binary files were incorrectly 
convert by xlate_in_filter().

Find the new patch enclosed (I have also (tried) to arrange the style around the 
patch).

Cheers

Jean-Frederic

> 
>>      if (r->proxyreq) return DECLINED;
>> +    if (r->filename == NULL) return DECLINED;
> 
> 
> 


Re: [PATCH] mod_charset_lite.c

Posted by Jeff Trawick <tr...@attglobal.net>.
jean-frederic clere wrote:
> Hi,
> 
> When using mod_jk2 and mod_charset_lite mod_charset_lite cores because 
> r->filename is NULL.

patch looks reasonable...  unfortunately, I lifted some bad style from 
somewhere (the code around your patch)...  I'll fix that up and then commit the 
appropriate patch

>      if (r->proxyreq) return DECLINED;
> +    if (r->filename == NULL) return DECLINED;