From 58c326809a816703dc516c3022c9c4dbb9d09445 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Fri, 3 Dec 2004 06:24:38 +0000 Subject: r4052: fixed a bunch of code to use the type safe _p allocation macros (This used to be commit 80d15fa3402a9d1183467463f6b21c0b674bc442) --- source4/torture/nsstest.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source4/torture/nsstest.c') diff --git a/source4/torture/nsstest.c b/source4/torture/nsstest.c index a82fa05203..376edada56 100644 --- a/source4/torture/nsstest.c +++ b/source4/torture/nsstest.c @@ -292,7 +292,7 @@ static void nss_test_initgroups(char *name, gid_t gid) int i; NSS_STATUS status; - groups = (gid_t *)malloc(size * sizeof(gid_t)); + groups = (gid_t *)malloc_array_p(gid_t, size); groups[0] = gid; status = nss_initgroups(name, gid, &groups, &start, &size); -- cgit