From 99f8dcab0c693424c65dce820a2eaed343c5f67e Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Sat, 5 Sep 2009 19:20:16 +0200 Subject: s3:smbd: Add the ntstatus to the smb_panic in share_mode_lock_destructor This might help finding why bug 6518 happens --- source3/locking/locking.c | 20 ++++++++++++++++++-- 1 file changed, 18 insertions(+), 2 deletions(-) diff --git a/source3/locking/locking.c b/source3/locking/locking.c index fba871c704..5b17e3b6e8 100644 --- a/source3/locking/locking.c +++ b/source3/locking/locking.c @@ -782,9 +782,18 @@ static int share_mode_lock_destructor(struct share_mode_lock *lck) status = lck->record->delete_rec(lck->record); if (!NT_STATUS_IS_OK(status)) { + char *errmsg; + DEBUG(0, ("delete_rec returned %s\n", nt_errstr(status))); - smb_panic("could not delete share entry"); + + if (asprintf(&errmsg, "could not delete share " + "entry: %s\n", + nt_errstr(status)) == -1) { + smb_panic("could not delete share" + "entry"); + } + smb_panic(errmsg); } } goto done; @@ -792,8 +801,15 @@ static int share_mode_lock_destructor(struct share_mode_lock *lck) status = lck->record->store(lck->record, data, TDB_REPLACE); if (!NT_STATUS_IS_OK(status)) { + char *errmsg; + DEBUG(0, ("store returned %s\n", nt_errstr(status))); - smb_panic("could not store share mode entry"); + + if (asprintf(&errmsg, "could not store share mode entry: %s", + nt_errstr(status)) == -1) { + smb_panic("could not store share mode entry"); + } + smb_panic(errmsg); } done: -- cgit