commit | 6e46ff11e9c0d0b9266226ad911362c8a62ee458 | [log] [tgz] |
---|---|---|
author | Vincent Bernat <vincent@bernat.im> | Thu May 19 11:29:43 2016 +0200 |
committer | Willy Tarreau <w@1wt.eu> | Thu May 19 21:53:10 2016 +0200 |
tree | 0c61c709808b24e7fe6cfa45e5dda2ea96c863c3 | |
parent | 6e61589573f49b20a7184c9d297af1fc7d9184d8 [diff] |
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.
diff --git a/src/cfgparse.c b/src/cfgparse.c index 48e584c..9b76465 100644 --- a/src/cfgparse.c +++ b/src/cfgparse.c
@@ -298,7 +298,7 @@ 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;