From c0bbadaa955b15e5e2df03349bbb0e7d994c58b9 Mon Sep 17 00:00:00 2001 From: tedu Date: Tue, 6 May 2014 20:55:10 +0000 Subject: [PATCH] reallocarray --- bin/ls/print.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/ls/print.c b/bin/ls/print.c index 2889f515085..5b223303976 100644 --- a/bin/ls/print.c +++ b/bin/ls/print.c @@ -1,4 +1,4 @@ -/* $OpenBSD: print.c,v 1.31 2014/01/09 03:07:52 guenther Exp $ */ +/* $OpenBSD: print.c,v 1.32 2014/05/06 20:55:10 tedu Exp $ */ /* $NetBSD: print.c,v 1.15 1996/12/11 03:25:39 thorpej Exp $ */ /* @@ -174,7 +174,7 @@ printcol(DISPLAY *dp) if (dp->entries > lastentries) { FTSENT **a; - if ((a = realloc(array, dp->entries * sizeof(FTSENT *))) == + if ((a = reallocarray(array, dp->entries, sizeof(FTSENT *))) == NULL) { free(array); array = NULL; -- 2.20.1