1
0
mirror of https://github.com/samba-team/samba.git synced 2025-12-03 04:23:50 +03:00

r22542: Move over to using the _strict varients of the talloc

calls. No functional changes. Looks bigger than it is :-).
Jeremy.
This commit is contained in:
Jeremy Allison
2007-04-27 23:18:41 +00:00
committed by Gerald (Jerry) Carter
parent fcbfa2c991
commit f6fa3080fe
39 changed files with 143 additions and 114 deletions

View File

@@ -157,7 +157,7 @@ BOOL py_to_ACL(SEC_ACL *acl, PyObject *dict, TALLOC_CTX *mem_ctx)
acl->num_aces = PyList_Size(obj);
acl->aces = talloc_array(mem_ctx, struct security_ace, acl->num_aces);
acl->aces = TALLOC_ARRAY(mem_ctx, struct security_ace, acl->num_aces);
acl->size = SEC_ACL_HEADER_SIZE;
for (i = 0; i < acl->num_aces; i++) {