summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
Diffstat (limited to 'lib')
-rw-r--r--lib/ldb/common/ldb_pack.c1
-rw-r--r--lib/ldb/tests/ldb_filter_attrs_test.c2
2 files changed, 3 insertions, 0 deletions
diff --git a/lib/ldb/common/ldb_pack.c b/lib/ldb/common/ldb_pack.c
index b5e1fbbc4ff..e7dd364008a 100644
--- a/lib/ldb/common/ldb_pack.c
+++ b/lib/ldb/common/ldb_pack.c
@@ -1256,5 +1256,6 @@ int ldb_filter_attrs(struct ldb_context *ldb,
return 0;
failed:
+ TALLOC_FREE(filtered_msg->elements);
return -1;
}
diff --git a/lib/ldb/tests/ldb_filter_attrs_test.c b/lib/ldb/tests/ldb_filter_attrs_test.c
index d04775879ac..7d555e0da2e 100644
--- a/lib/ldb/tests/ldb_filter_attrs_test.c
+++ b/lib/ldb/tests/ldb_filter_attrs_test.c
@@ -384,6 +384,7 @@ static void test_filter_attrs_two_dup_attr_matched_one_attr(void **state)
/* This should fail the pidgenhole test */
assert_int_equal(ret, -1);
+ assert_null(filtered_msg->elements);
}
/*
@@ -772,6 +773,7 @@ static void test_filter_attrs_one_attr_matched_star_no_dn(void **state)
attrs,
filtered_msg);
assert_int_equal(ret, -1);
+ assert_null(filtered_msg->elements);
}
/*