[ start all new proposals below, under PATCHES PROPOSED. ]
- * easy votes:
- - Have static analyser tool happy
- - Potential use of uninitialized memory
- PR54936 [Zhenbo Xu <zhenbo1987 gmail com>]
- trunk: http://svn.apache.org/r1503990
- http://svn.apache.org/r1503991
- 2.4.x patch: trunk patches work
- +1: jailletc36, trawick, jim
-
-
PATCHES PROPOSED TO BACKPORT FROM TRUNK:
[ New proposals should be added at the end of the list ]
static const char *
proxy_get_host_of_request(request_rec *r)
{
- char *url, *user = NULL, *password = NULL, *err, *host;
+ char *url, *user = NULL, *password = NULL, *err, *host = NULL;
apr_port_t port;
if (r->hostname != NULL) {
AP_DECLARE(int) ap_find_child_by_pid(apr_proc_t *pid)
{
int i;
- int max_daemons_limit;
+ int max_daemons_limit = 0;
ap_mpm_query(AP_MPMQ_MAX_DAEMONS, &max_daemons_limit);