move listen log copying from ngx_open_listening_sockets()
to ngx_configure_listening_sockets(), otherwise listen socket logs have no file
after first reload and this caused segfault if debug_connection was used;
the bug has been introduced in r2786
diff --git a/src/core/ngx_connection.c b/src/core/ngx_connection.c
index b843b86..5dd1b7e 100644
--- a/src/core/ngx_connection.c
+++ b/src/core/ngx_connection.c
@@ -202,8 +202,6 @@
continue;
}
- ls[i].log = *ls[i].logp;
-
if (ls[i].inherited) {
/* TODO: close on exit */
@@ -357,6 +355,8 @@
ls = cycle->listening.elts;
for (i = 0; i < cycle->listening.nelts; i++) {
+ ls[i].log = *ls[i].logp;
+
if (ls[i].rcvbuf != -1) {
if (setsockopt(ls[i].fd, SOL_SOCKET, SO_RCVBUF,
(const void *) &ls[i].rcvbuf, sizeof(int))