[SCM] Samba Shared Repository - branch v3-5-test updated

Karolin Seeger kseeger at samba.org
Thu Feb 18 03:16:13 MST 2010


The branch, v3-5-test has been updated
       via  61ea3d3... s3-modules: fix get_acl_blob in the acl_tdb VFS module.
      from  1d71d4b... Fix bug #6557 - Do not work VFS full_audit

http://gitweb.samba.org/?p=samba.git;a=shortlog;h=v3-5-test


- Log -----------------------------------------------------------------
commit 61ea3d3f897f2b6c1b893e727f57ce079782572b
Author: Günther Deschner <gd at samba.org>
Date:   Thu Feb 18 02:13:07 2010 +0100

    s3-modules: fix get_acl_blob in the acl_tdb VFS module.
    
    Shuttle-reviewed by jra :)
    
    Guenther
    (cherry picked from commit 6cf10cc1020dd7ef483887caebcbd76d28572432)
    
    Fix bug #7148 (vfs_acl_tdb module uses uninitialized variable. Reading blob can
    fail.)

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

Summary of changes:
 source3/modules/vfs_acl_tdb.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)


Changeset truncated at 500 lines:

diff --git a/source3/modules/vfs_acl_tdb.c b/source3/modules/vfs_acl_tdb.c
index ac11a51..bfed0eb 100644
--- a/source3/modules/vfs_acl_tdb.c
+++ b/source3/modules/vfs_acl_tdb.c
@@ -147,7 +147,7 @@ static NTSTATUS get_acl_blob(TALLOC_CTX *ctx,
 	TDB_DATA data;
 	struct file_id id;
 	struct db_context *db;
-	NTSTATUS status;
+	NTSTATUS status = NT_STATUS_OK;
 	SMB_STRUCT_STAT sbuf;
 
 	SMB_VFS_HANDLE_GET_DATA(handle, db, struct db_context,


-- 
Samba Shared Repository


More information about the samba-cvs mailing list