From 9affa82ac29a0cc03049c5440370564680cd66b2 Mon Sep 17 00:00:00 2001 From: Steven Danneman Date: Sun, 28 Dec 2008 17:16:28 -0800 Subject: Make sure share_info.tdb is open before attempting to delete an entry --- source3/lib/sharesec.c | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'source3/lib/sharesec.c') diff --git a/source3/lib/sharesec.c b/source3/lib/sharesec.c index 8ea63a5824..3866ff083f 100644 --- a/source3/lib/sharesec.c +++ b/source3/lib/sharesec.c @@ -41,7 +41,7 @@ static bool share_info_db_init(void) { const char *vstring = "INFO/version"; int32 vers_id; - + if (share_db != NULL) { return True; } @@ -53,7 +53,7 @@ static bool share_info_db_init(void) state_path("share_info.tdb"), strerror(errno) )); return False; } - + vers_id = dbwrap_fetch_int32(share_db, vstring); if (vers_id == SHARE_DATABASE_VERSION_V2) { return true; @@ -252,6 +252,10 @@ bool delete_share_security(const char *servicename) char *key; NTSTATUS status; + if (!share_info_db_init()) { + return False; + } + if (!(key = talloc_asprintf(talloc_tos(), "SECDESC/%s", servicename))) { return False; -- cgit