https://issues.apache.org/bugzilla/show_bug.cgi?id=46380
--- Comment #8 from Dan Muey <[email protected]> 2008-12-14 18:02:59 PST --- (In reply to comment #7) > (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. I take that back, it *does* resolve it :) I'll have to look into why it didn't seem to work before. -- 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]
