You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by hg...@apache.org on 2004/02/16 09:34:10 UTC

cvs commit: jakarta-tomcat-connectors/jk/native2/common jk_worker_ajp13.c

hgomez      2004/02/16 00:34:10

  Modified:    jk/native2/common jk_worker_ajp13.c
  Log:
  Fix BR 8968 with long URI.
  
  BTW, we should handled this better since URI with more than 64 chars
  may be common...
  
  Revision  Changes    Path
  1.55      +2 -0      jakarta-tomcat-connectors/jk/native2/common/jk_worker_ajp13.c
  
  Index: jk_worker_ajp13.c
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat-connectors/jk/native2/common/jk_worker_ajp13.c,v
  retrieving revision 1.54
  retrieving revision 1.55
  diff -u -r1.54 -r1.55
  --- jk_worker_ajp13.c	13 Feb 2004 08:40:41 -0000	1.54
  +++ jk_worker_ajp13.c	16 Feb 2004 08:34:09 -0000	1.55
  @@ -591,6 +591,8 @@
   
       /* XXX configurable ? */
       strncpy( e->stats->active, s->req_uri, 64);
  +    /* Be sure this is null terminated if it's a long url */
  +    e->stats->active[63] = '\0';
       
       /* Prepare the messages we'll use.*/ 
       e->request->reset( env, e->request );
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: tomcat-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: tomcat-dev-help@jakarta.apache.org


Re: jK2 and bugzilla

Posted by Remy Maucherat <re...@apache.org>.
Henri Gomez wrote:
> Hi to all,
> 
> I take a look at bugzilla and fix some bug reports.
> 
> It seems there is still problems in :
> 
> * JNI

Maybe in part classpath related issues. I have IIS 5 setup with JK 2 on 
my Win2k computer, and will use this to test it with 5.0.19.

> * IIS #15278
> 
> * Conflict with others mods (mod_dav / rewrite) #21546
> 
> * A problem when more than 42 workers are defined #23483

Damn, I thought the Ultimate Question would be something more 
interesting than "How many workers are required to make JK 2 segfault ?" ;)

> Many others errors need investigation, and I need help to
> see what could be fixed, and what should wait until next
> release.
> 
> JK2 commiters, we need you :)

Rémy

---------------------------------------------------------------------
To unsubscribe, e-mail: tomcat-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: tomcat-dev-help@jakarta.apache.org


Re: jK2 and bugzilla

Posted by Kurt Miller <tr...@apache.org>.
From: "Henri Gomez" <hg...@apache.org>
> Many others errors need investigation, and I need help to
> see what could be fixed, and what should wait until next
> release.
>
> JK2 commiters, we need you :)
>

The timing of the release is not good for me. My kids are off from
school this week. I'll try to make some time available, but I cant
make any promises.

-Kurt


---------------------------------------------------------------------
To unsubscribe, e-mail: tomcat-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: tomcat-dev-help@jakarta.apache.org


jK2 and bugzilla

Posted by Henri Gomez <hg...@apache.org>.
Hi to all,

I take a look at bugzilla and fix some bug reports.

It seems there is still problems in :

* JNI

* IIS #15278

* Conflict with others mods (mod_dav / rewrite) #21546

* A problem when more than 42 workers are defined #23483


Many others errors need investigation, and I need help to
see what could be fixed, and what should wait until next
release.

JK2 commiters, we need you :)

---------------------------------------------------------------------
To unsubscribe, e-mail: tomcat-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: tomcat-dev-help@jakarta.apache.org