6995654
diff -up openssh-7.4p1/servconf.c.memory openssh-7.4p1/servconf.c
6995654
--- openssh-7.4p1/servconf.c.memory	2016-12-23 15:37:48.181422360 +0100
6995654
+++ openssh-7.4p1/servconf.c	2016-12-23 15:38:30.189429116 +0100
6995654
@@ -2006,6 +2006,8 @@ copy_set_server_options(ServerOptions *d
00e17c1
 		dst->n = src->n; \
00e17c1
 } while (0)
00e17c1
 
00e17c1
+	u_int i;
00e17c1
+
00e17c1
 	M_CP_INTOPT(password_authentication);
00e17c1
 	M_CP_INTOPT(gss_authentication);
6995654
 	M_CP_INTOPT(pubkey_authentication);
6995654
@@ -2058,8 +2060,10 @@ copy_set_server_options(ServerOptions *d
00e17c1
 } while(0)
00e17c1
 #define M_CP_STRARRAYOPT(n, num_n) do {\
00e17c1
 	if (src->num_n != 0) { \
00e17c1
+		for (i = 0; i < dst->num_n; i++) \
00e17c1
+			free(dst->n[i]); \
00e17c1
 		for (dst->num_n = 0; dst->num_n < src->num_n; dst->num_n++) \
00e17c1
-			dst->n[dst->num_n] = xstrdup(src->n[dst->num_n]); \
00e17c1
+			dst->n[dst->num_n] = src->n[dst->num_n]; \
00e17c1
 	} \
00e17c1
 } while(0)
c7d42e7
 #define M_CP_STRARRAYOPT_ALLOC(n, num_n) do { \