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 2006/09/06 15:44:03 UTC

svn commit: r440712 - /tomcat/connectors/trunk/jni/native/src/poll.c

Author: mturk
Date: Wed Sep  6 06:44:02 2006
New Revision: 440712

URL: http://svn.apache.org/viewvc?view=rev&rev=440712
Log:
Fix typo (we already checked the socket_set array).

Modified:
    tomcat/connectors/trunk/jni/native/src/poll.c

Modified: tomcat/connectors/trunk/jni/native/src/poll.c
URL: http://svn.apache.org/viewvc/tomcat/connectors/trunk/jni/native/src/poll.c?view=diff&rev=440712&r1=440711&r2=440712
==============================================================================
--- tomcat/connectors/trunk/jni/native/src/poll.c (original)
+++ tomcat/connectors/trunk/jni/native/src/poll.c Wed Sep  6 06:44:02 2006
@@ -128,7 +128,7 @@
     tps->socket_set = apr_palloc(p, size * sizeof(apr_pollfd_t));
     TCN_CHECK_ALLOCATED(tps->socket_set);
     tps->socket_ttl = apr_palloc(p, size * sizeof(apr_interval_time_t));
-    TCN_CHECK_ALLOCATED(tps->socket_set);
+    TCN_CHECK_ALLOCATED(tps->socket_ttl);
     tps->nelts  = 0;
     tps->nalloc = size;
     tps->pool   = p;



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