[SCM] Samba Shared Repository - branch master updated

Andrew Tridgell tridge at samba.org
Sun Oct 18 19:02:07 MDT 2009


The branch, master has been updated
       via  1219dac... s4-pvfs: fixed uninitialised variable
      from  d673b49... s4:ldb_msg_check_string_attribute - add a comment about the result values

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


- Log -----------------------------------------------------------------
commit 1219dac5ae345fcc687b7af9fdfb429a537874d1
Author: Andrew Tridgell <tridge at samba.org>
Date:   Mon Oct 19 11:56:53 2009 +1100

    s4-pvfs: fixed uninitialised variable
    
    This caused havoc on the build farm. Interestingly, it only affected
    gcc 4.3.3, not gcc 4.4.1

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

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


Changeset truncated at 500 lines:

diff --git a/source4/ntvfs/posix/pvfs_open.c b/source4/ntvfs/posix/pvfs_open.c
index 59bd67b..b100c85 100644
--- a/source4/ntvfs/posix/pvfs_open.c
+++ b/source4/ntvfs/posix/pvfs_open.c
@@ -106,7 +106,7 @@ static NTSTATUS pvfs_open_setup_eas_acl(struct pvfs_state *pvfs,
 					union smb_open *io,
 					struct security_descriptor *sd)
 {
-	NTSTATUS status;
+	NTSTATUS status = NT_STATUS_OK;
 
 	/* setup any EAs that were asked for */
 	if (io->ntcreatex.in.ea_list) {


-- 
Samba Shared Repository


More information about the samba-cvs mailing list