diff options
-rw-r--r-- | source4/dsdb/schema/schema_set.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/source4/dsdb/schema/schema_set.c b/source4/dsdb/schema/schema_set.c index 07d75c44a8..c57f5f10dd 100644 --- a/source4/dsdb/schema/schema_set.c +++ b/source4/dsdb/schema/schema_set.c @@ -390,6 +390,15 @@ int dsdb_reference_schema(struct ldb_context *ldb, struct dsdb_schema *schema, return ret; } + if (talloc_reference(ldb, schema) == NULL) { + return LDB_ERR_OPERATIONS_ERROR; + } + + ret = dsdb_schema_set_attributes(ldb, schema, write_attributes); + if (ret != LDB_SUCCESS) { + return ret; + } + return LDB_SUCCESS; } |