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
/* that's it */
composite_done(c);
-
+ return;
} else {
/* something went wrong */
composite_error(c, c->status);
+ return;
}
}
/* that's it */
composite_done(c);
+ return;
} else {
/* something went wrong */
composite_error(c, c->status);
+ return;
}
}
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;
}
}
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;
}
}