From 9b5354bea4740a1b3e47e203ab28b35a9ff359a5 Mon Sep 17 00:00:00 2001 From: Simo Sorce Date: Wed, 13 Dec 2006 18:29:00 +0000 Subject: r20151: remove meaningless checks (This used to be commit 33a55f0cfc0c5eb3f3cfa8276fa258349ad42f8d) --- source3/nsswitch/idmap_rid.c | 8 -------- 1 file changed, 8 deletions(-) (limited to 'source3/nsswitch/idmap_rid.c') 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; -- cgit