From 6638d1036688f7b0f15a1a18c9a251ab0a7ab626 Mon Sep 17 00:00:00 2001 From: Andrew Bartlett Date: Fri, 7 Sep 2012 17:44:24 +1000 Subject: smbd: Remove pre-allocation of ACL array in sys_acl_init() Instead, this is just handled with realloc in sys_acl_create_entry() This allows us to remove the size element from the SMB_ACL_T. Andrew Bartlett --- librpc/idl/smb_acl.idl | 1 - 1 file changed, 1 deletion(-) (limited to 'librpc') diff --git a/librpc/idl/smb_acl.idl b/librpc/idl/smb_acl.idl index 2904c3afa4..f7332d9ac7 100644 --- a/librpc/idl/smb_acl.idl +++ b/librpc/idl/smb_acl.idl @@ -65,7 +65,6 @@ interface smb_acl } smb_acl_entry; [public] typedef struct { - [value(0)] int size; int count; [value(0)] int next; [size_is(count)] smb_acl_entry acl[*]; -- cgit