https://issues.apache.org/bugzilla/show_bug.cgi?id=46380
--- Comment #7 from Dan Muey <[email protected]> 2008-12-14 17:02:13 PST --- (In reply to comment #3) > Can you please try if the following patch fixes your issue? > > Index: modules/generators/mod_cgid.c > =================================================================== > --- modules/generators/mod_cgid.c (revision 726007 ( > https://svn.apache.org/viewcvs.cgi?view=rev&rev=726007 )) > +++ modules/generators/mod_cgid.c (working copy) > @@ -201,7 +201,7 @@ > char *w; > int idx = 0; > > - if (ap_strchr_c(args, '=')) { > + if (!(*args) || ap_strchr_c(args, '=')) { > numwords = 0; > } > else { Unfortunately that did not resolve it. This was my configure line: ./configure --disable-authn-default --enable-expires --enable-headers --enable-info --enable-logio --enable-rewrite --enable-ssl --enable-suexec --enable-unique-id --prefix=/usr/local/apache --with-included-apr --with-mpm=worker --with-ssl=/usr --with-suexec-caller=nobody --with-suexec-docroot=/ --with-suexec-gidmin=100 --with-suexec-logfile=/usr/local/apache/logs/suexec_log --with-suexec-uidmin=100 --with-suexec-userdir=public_html -- 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]
