=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/ssh/servconf.c,v retrieving revision 1.263 retrieving revision 1.264 diff -u -r1.263 -r1.264 --- src/usr.bin/ssh/servconf.c 2015/04/23 04:59:10 1.263 +++ src/usr.bin/ssh/servconf.c 2015/04/24 01:36:00 1.264 @@ -1,5 +1,5 @@ -/* $OpenBSD: servconf.c,v 1.263 2015/04/23 04:59:10 dtucker Exp $ */ +/* $OpenBSD: servconf.c,v 1.264 2015/04/24 01:36:00 deraadt Exp $ */ /* * Copyright (c) 1995 Tatu Ylonen , Espoo, Finland * All rights reserved @@ -1396,7 +1396,7 @@ len = strlen(p) + 1; while ((arg = strdelim(&cp)) != NULL && *arg != '\0') { len += 1 + strlen(arg); - p = xrealloc(p, 1, len); + p = xreallocarray(p, 1, len); strlcat(p, " ", len); strlcat(p, arg, len); }