mirror of
https://github.com/samba-team/samba.git
synced 2024-12-24 21:34:56 +03:00
registry cachehook: revert logic to make fast path more obvious and reduce indent.
Michael
This commit is contained in:
parent
2f4ca62dce
commit
e97d558c56
@ -56,16 +56,17 @@ static char *keyname_to_path(TALLOC_CTX *mem_ctx, const char *keyname)
|
||||
|
||||
WERROR reghook_cache_init(void)
|
||||
{
|
||||
if (cache_tree == NULL) {
|
||||
cache_tree = pathtree_init(®db_ops, NULL);
|
||||
if (cache_tree == NULL) {
|
||||
return WERR_NOMEM;
|
||||
}
|
||||
DEBUG(10, ("reghook_cache_init: new tree with default "
|
||||
"ops %p for key [%s]\n", (void *)®db_ops,
|
||||
KEY_TREE_ROOT));
|
||||
if (cache_tree != NULL) {
|
||||
return WERR_OK;
|
||||
}
|
||||
|
||||
cache_tree = pathtree_init(®db_ops, NULL);
|
||||
if (cache_tree == NULL) {
|
||||
return WERR_NOMEM;
|
||||
}
|
||||
DEBUG(10, ("reghook_cache_init: new tree with default "
|
||||
"ops %p for key [%s]\n", (void *)®db_ops,
|
||||
KEY_TREE_ROOT));
|
||||
return WERR_OK;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user