summaryrefslogtreecommitdiff
path: root/source4/winbind
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2012-04-23 17:28:39 +1000
committerAndrew Bartlett <abartlet@samba.org>2012-04-23 14:29:44 +0200
commit5960b7b2a44161dba5dc96e6973e1fcc92b14bdd (patch)
tree92a0ad6094a0ee97d1a5d6e49c5a7dbc62dd3d41 /source4/winbind
parent4f7666f97120a01e5bbbf335cf3effbddd2b5cd2 (diff)
downloadsamba-5960b7b2a44161dba5dc96e6973e1fcc92b14bdd.tar.gz
samba-5960b7b2a44161dba5dc96e6973e1fcc92b14bdd.tar.bz2
samba-5960b7b2a44161dba5dc96e6973e1fcc92b14bdd.zip
s4-libnet Always return after composite_error()
These instances should not cause a problem, but make it easier to audit for this kind of problem in the future with grep. Andrew Bartlett Autobuild-User: Andrew Bartlett <abartlet@samba.org> Autobuild-Date: Mon Apr 23 14:29:45 CEST 2012 on sn-devel-104
Diffstat (limited to 'source4/winbind')
-rw-r--r--source4/winbind/wb_sid2gid.c2
-rw-r--r--source4/winbind/wb_sid2uid.c2
2 files changed, 4 insertions, 0 deletions
diff --git a/source4/winbind/wb_sid2gid.c b/source4/winbind/wb_sid2gid.c
index 0b3589561f..e1061544d2 100644
--- a/source4/winbind/wb_sid2gid.c
+++ b/source4/winbind/wb_sid2gid.c
@@ -84,8 +84,10 @@ static void sid2gid_recv_gid(struct composite_context *ctx)
ids->xid.type == ID_TYPE_GID) {
state->gid = ids->xid.id;
composite_done(state->ctx);
+ return;
} else {
composite_error(state->ctx, NT_STATUS_INVALID_SID);
+ return;
}
}
diff --git a/source4/winbind/wb_sid2uid.c b/source4/winbind/wb_sid2uid.c
index f1d9bdd677..2b5fec5381 100644
--- a/source4/winbind/wb_sid2uid.c
+++ b/source4/winbind/wb_sid2uid.c
@@ -84,8 +84,10 @@ static void sid2uid_recv_uid(struct composite_context *ctx)
ids->xid.type == ID_TYPE_UID) {
state->uid = ids->xid.id;
composite_done(state->ctx);
+ return;
} else {
composite_error(state->ctx, NT_STATUS_INVALID_SID);
+ return;
}
}