1
0
mirror of https://github.com/samba-team/samba.git synced 2025-03-12 20:58:37 +03:00

registry: remove unneeded talloc stackframe variable.

Michael
(This used to be commit 81993db828bf11b13d7ee1f43483968dc6241bcc)
This commit is contained in:
Michael Adam 2008-03-22 01:52:03 +01:00
parent e12ed5279a
commit 88d46f4ea4

View File

@ -66,7 +66,6 @@ bool init_registry( void )
{
int i;
bool ret = false;
TALLOC_CTX *frame = talloc_stackframe();
if ( !regdb_init() ) {
@ -104,6 +103,5 @@ bool init_registry( void )
fail:
/* close and let each smbd open up as necessary */
regdb_close();
TALLOC_FREE(frame);
return ret;
}