From 5ea9c47bb56e39106b5c324d24f70bbec4a23c00 Mon Sep 17 00:00:00 2001 From: David Maciejak Date: Tue, 4 Jun 2019 13:56:48 +0800 Subject: [PATCH] Fix initialization of pool struct variable --- hydra-pop3.c | 1 + 1 file changed, 1 insertion(+) diff --git a/hydra-pop3.c b/hydra-pop3.c index fe07eed..91d9c48 100644 --- a/hydra-pop3.c +++ b/hydra-pop3.c @@ -523,6 +523,7 @@ int32_t service_pop3_init(char *ip, int32_t sp, unsigned char options, char *mis p.pop3_auth_mechanism = AUTH_CLEAR; p.disable_tls = 1; + p.next = NULL; memcpy(p.ip, ip, 36); if ((options & OPTION_SSL) == 0) {