[SCM] Samba Shared Repository - branch master updated

Andrew Tridgell tridge at samba.org
Wed Dec 16 17:49:25 MST 2009


The branch, master has been updated
       via  0708b2a... s4-ntvfs: check if pvfs is NULL in pvfs_logoff
      from  fae70e1... s4:gensec: allow clearing local and remote address by passing NULL

http://gitweb.samba.org/?p=samba.git;a=shortlog;h=master


- Log -----------------------------------------------------------------
commit 0708b2a0c91aa3d0c836a3edf21b3cb8fbdcd76c
Author: brendan powers <brendan0powers at gmail.com>
Date:   Wed Dec 16 19:01:32 2009 -0500

    s4-ntvfs: check if pvfs is NULL in pvfs_logoff
    
    pvfs can be NULL if the directory a share points to does not exist. In
    this case, there would be no open files, so it is safe to just return
    from the function.
    
    Signed-off-by: Andrew Tridgell <tridge at samba.org>

-----------------------------------------------------------------------

Summary of changes:
 source4/ntvfs/posix/pvfs_open.c |    5 +++++
 1 files changed, 5 insertions(+), 0 deletions(-)


Changeset truncated at 500 lines:

diff --git a/source4/ntvfs/posix/pvfs_open.c b/source4/ntvfs/posix/pvfs_open.c
index 621db3c..aa66ad7 100644
--- a/source4/ntvfs/posix/pvfs_open.c
+++ b/source4/ntvfs/posix/pvfs_open.c
@@ -1713,6 +1713,11 @@ NTSTATUS pvfs_logoff(struct ntvfs_module_context *ntvfs,
 				  struct pvfs_state);
 	struct pvfs_file *f, *next;
 
+	/* If pvfs is NULL, we never logged on, and no files are open. */
+	if(pvfs == NULL) {
+		return NT_STATUS_OK;
+	}
+
 	for (f=pvfs->files.list;f;f=next) {
 		next = f->next;
 		if (f->ntvfs->session_info == req->session_info) {


-- 
Samba Shared Repository


More information about the samba-cvs mailing list