Use calloc() instead of an explicit memset.

MFC after:	2 weeks
This commit is contained in:
Xin LI 2011-07-14 07:35:28 +00:00
parent 35741267c0
commit 5375015146
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=224003

View File

@ -1789,10 +1789,9 @@ get_exp(void)
{
struct exportlist *ep;
ep = (struct exportlist *)malloc(sizeof (struct exportlist));
ep = (struct exportlist *)calloc(1, sizeof (struct exportlist));
if (ep == (struct exportlist *)NULL)
out_of_mem();
memset(ep, 0, sizeof(struct exportlist));
return (ep);
}
@ -1804,10 +1803,9 @@ get_grp(void)
{
struct grouplist *gp;
gp = (struct grouplist *)malloc(sizeof (struct grouplist));
gp = (struct grouplist *)calloc(1, sizeof (struct grouplist));
if (gp == (struct grouplist *)NULL)
out_of_mem();
memset(gp, 0, sizeof(struct grouplist));
return (gp);
}