This one used to alloc then zero the area, let's have the allocator do it.
LIST_INIT(&alert->rules.preset_vars); /* unused for email alerts */
alert->srv = s;
- if ((tcpcheck = pool_alloc(pool_head_tcpcheck_rule)) == NULL)
+ if ((tcpcheck = pool_zalloc(pool_head_tcpcheck_rule)) == NULL)
goto error;
- memset(tcpcheck, 0, sizeof(*tcpcheck));
tcpcheck->action = TCPCHK_ACT_CONNECT;
tcpcheck->comment = NULL;