From 32cad7601a55b2c232c4914ab382714f331ae218 Mon Sep 17 00:00:00 2001 From: Matthias Dieter Wallnöfer Date: Mon, 4 Apr 2011 10:26:47 +0200 Subject: ldb:common/*.c - check for some OOM conditions Reviewed-by: abartlet --- source4/lib/ldb/common/ldb_modules.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'source4/lib/ldb/common/ldb_modules.c') diff --git a/source4/lib/ldb/common/ldb_modules.c b/source4/lib/ldb/common/ldb_modules.c index b382a91ec8e..d07666a6745 100644 --- a/source4/lib/ldb/common/ldb_modules.c +++ b/source4/lib/ldb/common/ldb_modules.c @@ -200,6 +200,9 @@ int ldb_module_connect_backend(struct ldb_context *ldb, /* Default to tdb */ backend = talloc_strdup(ldb, "tdb"); } + if (backend == NULL) { + return ldb_oom(ldb); + } be = ldb_find_backend(backend); -- cgit