1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-24 21:34:56 +03:00

source3/rpc_server/svcctl/srv_svcctl_reg.c: fix stackframe leak

svcctl_init_winreg() doesn't free its stackframe.

Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
This commit is contained in:
Rusty Russell 2012-07-18 05:04:31 +09:30
parent bdc59fb538
commit 32c69e6e2a

View File

@ -702,6 +702,7 @@ done:
}
}
regdb_close();
talloc_free(tmp_ctx);
return ok;
}