mirror of
https://github.com/samba-team/samba.git
synced 2024-12-24 21:34:56 +03:00
r4731: Fix the build
This commit is contained in:
parent
77c10ff9aa
commit
340d7f3173
@ -393,10 +393,11 @@ NTSTATUS privilege_create_account(const DOM_SID *sid )
|
||||
NTSTATUS privilege_set_init(PRIVILEGE_SET *priv_set)
|
||||
{
|
||||
NTSTATUS ret;
|
||||
TALLOC_CTX *mem_ctx;
|
||||
|
||||
ZERO_STRUCTP( priv_set );
|
||||
|
||||
TALLOC_CTX *mem_ctx = talloc_init("privilege set");
|
||||
mem_ctx = talloc_init("privilege set");
|
||||
ALLOC_CHECK(mem_ctx, ret, done, "init_privilege");
|
||||
|
||||
priv_set->mem_ctx = mem_ctx;
|
||||
|
Loading…
Reference in New Issue
Block a user