The branch, master has been updated
via a8cb1b1 smbd: Avoid calling notify_filter_string for low debuglevels
from 4b637c3 ldb: use of NULL pointer bugfix
http://gitweb.samba.org/?p=samba.git;a=shortlog;h=master
- Log -----------------------------------------------------------------
commit a8cb1b10042ee4f8d235b0b96224844f2e94c43b
Author: Volker Lendecke <[email protected]>
Date: Mon Dec 2 21:32:47 2013 +0100
smbd: Avoid calling notify_filter_string for low debuglevels
Signed-off-by: Volker Lendecke <[email protected]>
Reviewed-by: Andreas Schneider <[email protected]>
Autobuild-User(master): Andreas Schneider <[email protected]>
Autobuild-Date(master): Wed Dec 4 20:09:39 CET 2013 on sn-devel-104
-----------------------------------------------------------------------
Summary of changes:
source3/smbd/smb2_notify.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
Changeset truncated at 500 lines:
diff --git a/source3/smbd/smb2_notify.c b/source3/smbd/smb2_notify.c
index 81aa615..77399ef 100644
--- a/source3/smbd/smb2_notify.c
+++ b/source3/smbd/smb2_notify.c
@@ -195,7 +195,7 @@ static struct tevent_req *smbd_smb2_notify_send(TALLOC_CTX
*mem_ctx,
state->smbreq = smbreq;
smbreq->async_priv = (void *)req;
- {
+ if (DEBUGLEVEL >= 3) {
char *filter_string;
filter_string = notify_filter_string(NULL,
in_completion_filter);
--
Samba Shared Repository