From 6e46ff11e9c0d0b9266226ad911362c8a62ee458 Mon Sep 17 00:00:00 2001 From: Vincent Bernat Date: Thu, 19 May 2016 11:29:43 +0200 Subject: [PATCH] BUG/MINOR: fix listening IP address storage for frontends (cont) Commit 6e6158 was incomplete. There was an additional aggregate copy that may trigger a similar case in the future. --- src/cfgparse.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cfgparse.c b/src/cfgparse.c index 48e584cf7..9b7646523 100644 --- a/src/cfgparse.c +++ b/src/cfgparse.c @@ -298,7 +298,7 @@ int str2listener(char *str, struct proxy *curproxy, struct bind_conf *bind_conf, l->bind_conf = bind_conf; l->fd = fd; - l->addr = ss; + memcpy(&l->addr, &ss, sizeof(ss)); l->xprt = &raw_sock; l->state = LI_INIT;