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
Index: modules/experimental/mod_charset_lite.c
===================================================================
RCS file: /home/cvs/apache/httpd-2.0/modules/experimental/mod_charset_lite.c,v
retrieving revision 1.72
diff -u -r1.72 mod_charset_lite.c
--- modules/experimental/mod_charset_lite.c 29 Jun 2004 13:46:54 -0000 1.72
+++ modules/experimental/mod_charset_lite.c 7 Jul 2004 15:49:37 -0000
@@ -226,6 +226,7 @@
/* catch proxy requests */
if (r->proxyreq) return DECLINED;
+ if (r->filename == NULL) return DECLINED;
/* mod_rewrite indicators */
if (!strncmp(r->filename, "redirect:", 9)) return DECLINED;
if (!strncmp(r->filename, "gone:", 5)) return DECLINED;
