diff options
author | Luke Leighton <lkcl@samba.org> | 1999-10-18 16:26:55 +0000 |
---|---|---|
committer | Luke Leighton <lkcl@samba.org> | 1999-10-18 16:26:55 +0000 |
commit | 6f933fb359e7efc7b685e537b95bdadd6e131727 (patch) | |
tree | 16bd03e6583c4fc74840435af6a0e88eb430cdd2 /source/rpc_parse/parse_samr.c | |
parent | 62593d39a5ba9f590989a4e40f7200d4af55b73d (diff) | |
download | samba-6f933fb359e7efc7b685e537b95bdadd6e131727.tar.gz samba-6f933fb359e7efc7b685e537b95bdadd6e131727.tar.xz samba-6f933fb359e7efc7b685e537b95bdadd6e131727.zip |
initialising enum dom users mem and account name ptrs to NULL.
Diffstat (limited to 'source/rpc_parse/parse_samr.c')
-rw-r--r-- | source/rpc_parse/parse_samr.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/source/rpc_parse/parse_samr.c b/source/rpc_parse/parse_samr.c index 7dae0702cde..d98c429fb19 100644 --- a/source/rpc_parse/parse_samr.c +++ b/source/rpc_parse/parse_samr.c @@ -1278,6 +1278,9 @@ BOOL samr_io_r_enum_dom_users(char *desc, SAMR_R_ENUM_DOM_USERS *r_u, prs_struct prs_debug(ps, depth, desc, "samr_io_r_enum_dom_users"); depth++; + r_u->sam = NULL; + r_u->uni_acct_name = NULL; + prs_align(ps); prs_uint32("next_idx ", ps, depth, &(r_u->next_idx )); |