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:
committed by
Gerald (Jerry) Carter
parent
fcbfa2c991
commit
f6fa3080fe
@@ -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++) {
|
||||
|
||||
Reference in New Issue
Block a user