summaryrefslogtreecommitdiff
path: root/source3/python/py_ntsec.c
diff options
context:
space:
mode:
Diffstat (limited to 'source3/python/py_ntsec.c')
-rw-r--r--source3/python/py_ntsec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/python/py_ntsec.c b/source3/python/py_ntsec.c
index 907e9d08c1..38886f679e 100644
--- a/source3/python/py_ntsec.c
+++ b/source3/python/py_ntsec.c
@@ -157,7 +157,7 @@ BOOL py_to_ACL(SEC_ACL *acl, PyObject *dict, TALLOC_CTX *mem_ctx)
acl->num_aces = PyList_Size(obj);
- acl->ace = talloc(mem_ctx, acl->num_aces * sizeof(SEC_ACE));
+ acl->ace = _talloc(mem_ctx, acl->num_aces * sizeof(SEC_ACE));
acl->size = SEC_ACL_HEADER_SIZE;
for (i = 0; i < acl->num_aces; i++) {