summaryrefslogtreecommitdiffstats
path: root/source4
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2009-10-12 20:11:03 +1100
committerAndrew Bartlett <abartlet@samba.org>2009-10-12 23:33:22 +1100
commita37efaf9229e8b6ff3da8caaa5cb0f6ce8670cee (patch)
tree274570778e96f2a599c1c7505ca3e1dd19de7969 /source4
parent8def289c8e19fc516ddcf67a117a8e8250baf1c2 (diff)
downloadsamba-a37efaf9229e8b6ff3da8caaa5cb0f6ce8670cee.tar.gz
samba-a37efaf9229e8b6ff3da8caaa5cb0f6ce8670cee.tar.xz
samba-a37efaf9229e8b6ff3da8caaa5cb0f6ce8670cee.zip
s4:ldb Allow a NULL module list
Diffstat (limited to 'source4')
-rw-r--r--source4/lib/ldb/common/ldb_modules.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/lib/ldb/common/ldb_modules.c b/source4/lib/ldb/common/ldb_modules.c
index 135ed8c05f1..69b8ed0bf41 100644
--- a/source4/lib/ldb/common/ldb_modules.c
+++ b/source4/lib/ldb/common/ldb_modules.c
@@ -337,7 +337,7 @@ int ldb_load_modules_list(struct ldb_context *ldb, const char **module_list, str
module = backend;
- for (i = 0; module_list[i] != NULL; i++) {
+ for (i = 0; module_list && module_list[i] != NULL; i++) {
struct ldb_module *current;
const struct ldb_module_ops *ops;