summaryrefslogtreecommitdiff
path: root/lib/ldb/tools/ldbtest.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/ldb/tools/ldbtest.c')
-rw-r--r--lib/ldb/tools/ldbtest.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/ldb/tools/ldbtest.c b/lib/ldb/tools/ldbtest.c
index 4e181af9d55..384624ca553 100644
--- a/lib/ldb/tools/ldbtest.c
+++ b/lib/ldb/tools/ldbtest.c
@@ -324,6 +324,10 @@ static void start_test_index(struct ldb_context **ldb)
ldb_delete(*ldb, indexlist);
msg = ldb_msg_new(NULL);
+ if (msg == NULL) {
+ printf("ldb_msg_new failed\n");
+ exit(LDB_ERR_OPERATIONS_ERROR);
+ }
msg->dn = indexlist;
ldb_msg_add_string(msg, "@IDXATTR", strdup("uid"));