1
0
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:
Volker Lendecke 2005-01-14 08:14:22 +00:00 committed by Gerald (Jerry) Carter
parent 77c10ff9aa
commit 340d7f3173

View File

@ -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;