You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by tr...@apache.org on 2009/09/17 15:03:06 UTC

svn commit: r816175 - in /httpd/mod_fcgid/trunk/modules/fcgid: fcgid_pm_unix.c fcgid_pm_win.c

Author: trawick
Date: Thu Sep 17 13:03:05 2009
New Revision: 816175

URL: http://svn.apache.org/viewvc?rev=816175&view=rev
Log:
magic value initializer was overwritten before first use

Modified:
    httpd/mod_fcgid/trunk/modules/fcgid/fcgid_pm_unix.c
    httpd/mod_fcgid/trunk/modules/fcgid/fcgid_pm_win.c

Modified: httpd/mod_fcgid/trunk/modules/fcgid/fcgid_pm_unix.c
URL: http://svn.apache.org/viewvc/httpd/mod_fcgid/trunk/modules/fcgid/fcgid_pm_unix.c?rev=816175&r1=816174&r2=816175&view=diff
==============================================================================
--- httpd/mod_fcgid/trunk/modules/fcgid/fcgid_pm_unix.c (original)
+++ httpd/mod_fcgid/trunk/modules/fcgid/fcgid_pm_unix.c Thu Sep 17 13:03:05 2009
@@ -42,7 +42,7 @@
 static apr_status_t create_process_manager(server_rec * main_server,
                                            apr_pool_t * configpool);
 
-static int g_wakeup_timeout = 3;
+static int g_wakeup_timeout = 0;
 static apr_proc_t *g_process_manager = NULL;
 static apr_file_t *g_pm_read_pipe = NULL;
 static apr_file_t *g_pm_write_pipe = NULL;

Modified: httpd/mod_fcgid/trunk/modules/fcgid/fcgid_pm_win.c
URL: http://svn.apache.org/viewvc/httpd/mod_fcgid/trunk/modules/fcgid/fcgid_pm_win.c?rev=816175&r1=816174&r2=816175&view=diff
==============================================================================
--- httpd/mod_fcgid/trunk/modules/fcgid/fcgid_pm_win.c (original)
+++ httpd/mod_fcgid/trunk/modules/fcgid/fcgid_pm_win.c Thu Sep 17 13:03:05 2009
@@ -30,7 +30,7 @@
 static apr_thread_mutex_t *g_reqlock = NULL;
 static apr_thread_t *g_wakeup_thread = NULL;
 static int g_must_exit = 0;
-static int g_wakeup_timeout = 3;
+static int g_wakeup_timeout = 0;
 
 static void *APR_THREAD_FUNC wakeup_thread(apr_thread_t * thd, void *data)
 {