diff options
author | Bo Yang <boyang@novell.com> | 2009-03-02 14:19:50 +0800 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2009-03-02 15:51:55 -0800 |
commit | deb73e87b29d59610ab16a8eb021728e782ac8b8 (patch) | |
tree | 2afe0e6da1577c066c6a409ac43a4238e6d27c44 /source3/winbindd/idmap_hash | |
parent | 71ffd21d273e691f5f791af08fa011345ebfab11 (diff) | |
download | samba-deb73e87b29d59610ab16a8eb021728e782ac8b8.tar.gz samba-deb73e87b29d59610ab16a8eb021728e782ac8b8.tar.bz2 samba-deb73e87b29d59610ab16a8eb021728e782ac8b8.zip |
More fix to initialize idmap statuses
Diffstat (limited to 'source3/winbindd/idmap_hash')
-rw-r--r-- | source3/winbindd/idmap_hash/idmap_hash.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/source3/winbindd/idmap_hash/idmap_hash.c b/source3/winbindd/idmap_hash/idmap_hash.c index 7dd94aede0..42830720f3 100644 --- a/source3/winbindd/idmap_hash/idmap_hash.c +++ b/source3/winbindd/idmap_hash/idmap_hash.c @@ -160,6 +160,11 @@ static NTSTATUS unixids_to_sids(struct idmap_domain *dom, NTSTATUS nt_status = NT_STATUS_UNSUCCESSFUL; int i; + /* initialize the status to avoid suprise */ + for (i = 0; ids[i]; i++) { + ids[i]->status = ID_UNKNOWN; + } + nt_status = be_init(dom, NULL); BAIL_ON_NTSTATUS_ERROR(nt_status); @@ -206,6 +211,11 @@ static NTSTATUS sids_to_unixids(struct idmap_domain *dom, NTSTATUS nt_status = NT_STATUS_UNSUCCESSFUL; int i; + /* initialize the status to avoid suprise */ + for (i = 0; ids[i]; i++) { + ids[i]->status = ID_UNKNOWN; + } + nt_status = be_init(dom, NULL); BAIL_ON_NTSTATUS_ERROR(nt_status); |