diff options
author | Andrew Bartlett <abartlet@samba.org> | 2012-04-23 17:28:39 +1000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2012-04-23 14:29:44 +0200 |
commit | 5960b7b2a44161dba5dc96e6973e1fcc92b14bdd (patch) | |
tree | 92a0ad6094a0ee97d1a5d6e49c5a7dbc62dd3d41 /source4/libnet/libnet_group.c | |
parent | 4f7666f97120a01e5bbbf335cf3effbddd2b5cd2 (diff) | |
download | samba-5960b7b2a44161dba5dc96e6973e1fcc92b14bdd.tar.gz |
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/libnet/libnet_group.c')
-rw-r--r-- | source4/libnet/libnet_group.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/source4/libnet/libnet_group.c b/source4/libnet/libnet_group.c index b12037e1f38..928ce692252 100644 --- a/source4/libnet/libnet_group.c +++ b/source4/libnet/libnet_group.c @@ -680,10 +680,11 @@ static void continue_groups_enumerated(struct tevent_req *subreq) /* that's it */ composite_done(c); - + return; } else { /* something went wrong */ composite_error(c, c->status); + return; } } |