diff options
author | Simo Sorce <idra@samba.org> | 2006-12-13 18:29:00 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 12:16:28 -0500 |
commit | 9b5354bea4740a1b3e47e203ab28b35a9ff359a5 (patch) | |
tree | b4b665af5f2367d004bc8475f27a7d90a93d3656 /source3/nsswitch/idmap_rid.c | |
parent | 25fe484101a589d6d15df21456060888aaaa149a (diff) | |
download | samba-9b5354bea4740a1b3e47e203ab28b35a9ff359a5.tar.gz samba-9b5354bea4740a1b3e47e203ab28b35a9ff359a5.tar.xz samba-9b5354bea4740a1b3e47e203ab28b35a9ff359a5.zip |
r20151: remove meaningless checks
(This used to be commit 33a55f0cfc0c5eb3f3cfa8276fa258349ad42f8d)
Diffstat (limited to 'source3/nsswitch/idmap_rid.c')
-rw-r--r-- | source3/nsswitch/idmap_rid.c | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/source3/nsswitch/idmap_rid.c b/source3/nsswitch/idmap_rid.c index bbba1bd011..83818711a2 100644 --- a/source3/nsswitch/idmap_rid.c +++ b/source3/nsswitch/idmap_rid.c @@ -86,10 +86,6 @@ static NTSTATUS idmap_rid_id_to_sid(TALLOC_CTX *memctx, struct idmap_rid_context char *domname, *name; enum lsa_SidType sid_type; - if (!memctx || !ctx || !map) { - return NT_STATUS_INVALID_PARAMETER; - } - /* apply filters before checking */ if ((map->xid.id < ctx->low_id) || (map->xid.id > ctx->high_id)) { DEBUG(5, ("Requested id (%u) out of range (%u - %u). Filtered!\n", @@ -142,10 +138,6 @@ static NTSTATUS idmap_rid_sid_to_id(TALLOC_CTX *memctx, struct idmap_rid_context enum lsa_SidType sid_type; uint32_t rid; - if (!memctx || !ctx || !map) { - return NT_STATUS_INVALID_PARAMETER; - } - sid_peek_rid(map->sid, &rid); map->xid.id = rid - ctx->base_rid + ctx->low_id; |