From 2a67d912c642765b63cdc41b07515e30e77839ff Mon Sep 17 00:00:00 2001 From: Karel Zak Date: Wed, 14 Jun 2017 21:45:56 +0200 Subject: wall: don't use gid_t when allocate grounps array Reported-by: Ruediger Meier Signed-off-by: Karel Zak --- term-utils/wall.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'term-utils/wall.c') diff --git a/term-utils/wall.c b/term-utils/wall.c index db85062a7..527e4b6df 100644 --- a/term-utils/wall.c +++ b/term-utils/wall.c @@ -132,7 +132,7 @@ static struct group_workspace *init_group_workspace(const char *optarg) buf->requested_group = get_group_gid(optarg); buf->ngroups = sysconf(_SC_NGROUPS_MAX) + 1; /* room for the primary gid */ - buf->groups = xcalloc(sizeof(gid_t), buf->ngroups); + buf->groups = xcalloc(sizeof(*buf->groups), buf->ngroups); return buf; } -- cgit v1.2.3-55-g7522