
trawick at apache
Nov 4, 2009, 4:21 PM
Post #1 of 1
(106 views)
Permalink
|
|
svn commit: r832924 - /httpd/mod_fcgid/trunk/modules/fcgid/fcgid_pm_main.c
|
|
Author: trawick Date: Thu Nov 5 00:21:26 2009 New Revision: 832924 URL: http://svn.apache.org/viewvc?rev=832924&view=rev Log: axe set-but-unused variable noticed by LLVM scan-build Modified: httpd/mod_fcgid/trunk/modules/fcgid/fcgid_pm_main.c Modified: httpd/mod_fcgid/trunk/modules/fcgid/fcgid_pm_main.c URL: http://svn.apache.org/viewvc/httpd/mod_fcgid/trunk/modules/fcgid/fcgid_pm_main.c?rev=832924&r1=832923&r2=832924&view=diff ============================================================================== --- httpd/mod_fcgid/trunk/modules/fcgid/fcgid_pm_main.c (original) +++ httpd/mod_fcgid/trunk/modules/fcgid/fcgid_pm_main.c Thu Nov 5 00:21:26 2009 @@ -169,7 +169,7 @@ */ pid_t thepid; fcgid_procnode *previous_node, *current_node, *next_node; - fcgid_procnode *error_list_header, *check_list_header; + fcgid_procnode *check_list_header; fcgid_procnode *proc_table; apr_time_t last_active_time; apr_time_t now = apr_time_now(); @@ -191,7 +191,6 @@ */ proc_table = proctable_get_table_array(); previous_node = proctable_get_idle_list(); - error_list_header = proctable_get_error_list(); check_list_header = &temp_header; proctable_pm_lock(main_server);
|