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 2009/12/15 11:15:19 UTC

svn commit: r890739 - /tomcat/jk/trunk/native/common/jk_uri_worker_map.c

Author: mturk
Date: Tue Dec 15 10:15:18 2009
New Revision: 890739

URL: http://svn.apache.org/viewvc?rev=890739&view=rev
Log:
Fix compile time warining about uninitialized variable

Modified:
    tomcat/jk/trunk/native/common/jk_uri_worker_map.c

Modified: tomcat/jk/trunk/native/common/jk_uri_worker_map.c
URL: http://svn.apache.org/viewvc/tomcat/jk/trunk/native/common/jk_uri_worker_map.c?rev=890739&r1=890738&r2=890739&view=diff
==============================================================================
--- tomcat/jk/trunk/native/common/jk_uri_worker_map.c (original)
+++ tomcat/jk/trunk/native/common/jk_uri_worker_map.c Tue Dec 15 10:15:18 2009
@@ -632,7 +632,7 @@
         char *w;
         char *param;
 #ifdef _MT_CODE_PTHREAD
-        char *lasts;
+        char *lasts = NULL;
 #endif
 
         w = jk_pool_strdup(p, worker);



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