summaryrefslogtreecommitdiff
path: root/source4/lib/util_pw.c
diff options
context:
space:
mode:
Diffstat (limited to 'source4/lib/util_pw.c')
-rw-r--r--source4/lib/util_pw.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/lib/util_pw.c b/source4/lib/util_pw.c
index 9d075a05e8..19893e396f 100644
--- a/source4/lib/util_pw.c
+++ b/source4/lib/util_pw.c
@@ -24,7 +24,7 @@
static struct passwd *alloc_copy_passwd(const struct passwd *from)
{
- struct passwd *ret = smb_xmalloc(sizeof(struct passwd));
+ struct passwd *ret = smb_xmalloc_p(struct passwd);
ZERO_STRUCTP(ret);
ret->pw_name = smb_xstrdup(from->pw_name);
ret->pw_passwd = smb_xstrdup(from->pw_passwd);