diff options
author | Michael Adam <obnox@samba.org> | 2008-04-13 13:41:39 +0200 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2008-04-13 15:33:47 +0200 |
commit | 2ffe46e24d369fabf2d1fe44dd91025466fcc502 (patch) | |
tree | 4679516b4ebb412497cd87685ed690e282393312 /source3/registry/reg_cachehook.c | |
parent | 26a5652f6d1dc7ae01a472beabf032faba07c8d2 (diff) | |
download | samba-2ffe46e24d369fabf2d1fe44dd91025466fcc502.tar.gz samba-2ffe46e24d369fabf2d1fe44dd91025466fcc502.tar.xz samba-2ffe46e24d369fabf2d1fe44dd91025466fcc502.zip |
registry cachehook: compare cache_tree against NULL, not 0.
Michael
(This used to be commit 4bfc0be55f2a436a9c687ab6ad86e704fcb753d6)
Diffstat (limited to 'source3/registry/reg_cachehook.c')
-rw-r--r-- | source3/registry/reg_cachehook.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/registry/reg_cachehook.c b/source3/registry/reg_cachehook.c index eb2884fc26..bfdc0de5f5 100644 --- a/source3/registry/reg_cachehook.c +++ b/source3/registry/reg_cachehook.c @@ -58,7 +58,7 @@ bool reghook_cache_init( void ) { if (cache_tree == NULL) { cache_tree = pathtree_init(®db_ops, NULL); - if (cache_tree !=0) { + if (cache_tree != NULL) { DEBUG(10, ("reghook_cache_init: new tree with default " "ops %p for key [%s]\n", (void *)®db_ops, KEY_TREE_ROOT)); |