...these two lines at around 1110 in jk_ajp_common.c

  int port = jk_get_worker_port(props, p->name, port);
  char *host = jk_get_worker_host(props, p->name, host);

use unitialised values for port and host. Anyone mind if I change them
to

  int port = jk_get_worker_port(props, p->name, -1);
  char *host = jk_get_worker_host(props, p->name, NULL);

?

-- 
Andy Armstrong, Tagish

Reply via email to