You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by mt...@apache.org on 2008/09/25 12:24:17 UTC

svn commit: r698917 - /tomcat/connectors/trunk/jk/native/common/jk_status.c

Author: mturk
Date: Thu Sep 25 03:24:16 2008
New Revision: 698917

URL: http://svn.apache.org/viewvc?rev=698917&view=rev
Log:
Fix core in status worker. Check for pointer, not pointer value

Modified:
    tomcat/connectors/trunk/jk/native/common/jk_status.c

Modified: tomcat/connectors/trunk/jk/native/common/jk_status.c
URL: http://svn.apache.org/viewvc/tomcat/connectors/trunk/jk/native/common/jk_status.c?rev=698917&r1=698916&r2=698917&view=diff
==============================================================================
--- tomcat/connectors/trunk/jk/native/common/jk_status.c (original)
+++ tomcat/connectors/trunk/jk/native/common/jk_status.c Thu Sep 25 03:24:16 2008
@@ -1333,7 +1333,7 @@
         JK_TRACE_EXIT(l);
         return JK_FALSE;
     }
-    if (*idx)
+    if (idx)
         i = *idx;
     for (; i < lb->num_of_workers; i++) {
         wr = &(lb->lb_workers[i]);



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