diff options
-rw-r--r-- | source4/lib/ldb/modules/ldb_map_outbound.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/source4/lib/ldb/modules/ldb_map_outbound.c b/source4/lib/ldb/modules/ldb_map_outbound.c index a9bfd8d113..615cdc40ca 100644 --- a/source4/lib/ldb/modules/ldb_map_outbound.c +++ b/source4/lib/ldb/modules/ldb_map_outbound.c @@ -1173,6 +1173,9 @@ int map_search(struct ldb_module *module, struct ldb_request *req) const char *wildcard[] = { "*", NULL }; const char * const *attrs; + if (!module->private_data) /* if we're not yet initialized, go to the next module */ + return ldb_next_request(module, req); + /* Do not manipulate our control entries */ if (ldb_dn_is_special(req->op.search.base)) return ldb_next_request(module, req); |