From c4d3f1b0f5345086e18cb4740e7a0c4fa222089a Mon Sep 17 00:00:00 2001 From: Michael Adam Date: Mon, 7 Jan 2008 10:41:09 +0100 Subject: [PATCH] Add some braces to if statement. Michael (This used to be commit 66fc1db1d19d11792d9506b06ad914d88b7e0663) --- source3/winbindd/winbindd_cache.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/source3/winbindd/winbindd_cache.c b/source3/winbindd/winbindd_cache.c index 62a68aa8aa..9602a128a6 100644 --- a/source3/winbindd/winbindd_cache.c +++ b/source3/winbindd/winbindd_cache.c @@ -2362,8 +2362,9 @@ bool initialize_winbindd_cache(void) void close_winbindd_cache() { - if (!wcache) + if (!wcache) { return; + } if (wcache->tdb) { tdb_close(wcache->tdb); wcache->tdb = NULL; -- 2.34.1