summaryrefslogtreecommitdiff
path: root/source4/winbind/wb_cmd_getgrgid.c
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2010-09-16 21:17:54 +1000
committerAndrew Tridgell <tridge@samba.org>2010-09-16 21:58:58 +1000
commit43d54406b19a8041633eb26d7a809e3fd7de3ef6 (patch)
tree69872cc8a88660b31a0e9b69450f1b3eaf95b927 /source4/winbind/wb_cmd_getgrgid.c
parentb04b8b5610f23cd50c9a7a00eeca81229acd36d5 (diff)
downloadsamba-43d54406b19a8041633eb26d7a809e3fd7de3ef6.tar.gz
samba-43d54406b19a8041633eb26d7a809e3fd7de3ef6.tar.bz2
samba-43d54406b19a8041633eb26d7a809e3fd7de3ef6.zip
s4-winbind: fixed two valgrind errors
- allocate the dc info on the right structure - zero the number of group members when allocating the winbindd_gr return Pair-Programmed-With: Andrew Bartlett <abartlet@samba.org>
Diffstat (limited to 'source4/winbind/wb_cmd_getgrgid.c')
-rw-r--r--source4/winbind/wb_cmd_getgrgid.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/winbind/wb_cmd_getgrgid.c b/source4/winbind/wb_cmd_getgrgid.c
index 93e01c8cf4..fe946ed257 100644
--- a/source4/winbind/wb_cmd_getgrgid.c
+++ b/source4/winbind/wb_cmd_getgrgid.c
@@ -130,7 +130,7 @@ static void cmd_getgrgid_recv_group_info(struct composite_context *ctx)
DEBUG(5, ("cmd_getgrgid_recv_group_info called\n"));
- gr = talloc(state, struct winbindd_gr);
+ gr = talloc_zero(state, struct winbindd_gr);
if (composite_nomem(gr, state->ctx)) return;
group_info = talloc(state, struct libnet_GroupInfo);