[SCM] Samba Shared Repository - branch v3-2-test updated - initial-v3-2-test-1487-ga3b36c3

Volker Lendecke vl at samba.org
Thu Jan 17 16:19:22 GMT 2008


The branch, v3-2-test has been updated
       via  a3b36c3cb0fe5f3e78c200290afa59829934f496 (commit)
      from  733e07a06ce3c903ff5837df6a5119f6d6e3eccb (commit)

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


- Log -----------------------------------------------------------------
commit a3b36c3cb0fe5f3e78c200290afa59829934f496
Author: Volker Lendecke <vl at samba.org>
Date:   Thu Jan 17 17:17:52 2008 +0100

    Fix two uninitialized variables in vfs_hpuxacl.c
    
    Thanks to David Leonard <David.Leonard at quest.com>, this fixes bug 5208.
    
    Volker

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

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


Changeset truncated at 500 lines:

diff --git a/source/modules/vfs_hpuxacl.c b/source/modules/vfs_hpuxacl.c
index e101886..f929340 100644
--- a/source/modules/vfs_hpuxacl.c
+++ b/source/modules/vfs_hpuxacl.c
@@ -140,7 +140,7 @@ SMB_ACL_T hpuxacl_sys_acl_get_file(vfs_handle_struct *handle,
 {
 	SMB_ACL_T result = NULL;
 	int count;
-	HPUX_ACL_T hpux_acl;
+	HPUX_ACL_T hpux_acl = NULL;
 	
 	DEBUG(10, ("hpuxacl_sys_acl_get_file called for file '%s'.\n", 
 		   path_p));
@@ -213,7 +213,7 @@ int hpuxacl_sys_acl_set_file(vfs_handle_struct *handle,
 {
 	int ret = -1;
 	SMB_STRUCT_STAT s;
-	HPUX_ACL_T hpux_acl;
+	HPUX_ACL_T hpux_acl = NULL;
 	int count;
 	
 	DEBUG(10, ("hpuxacl_sys_acl_set_file called for file '%s'\n",


-- 
Samba Shared Repository


More information about the samba-cvs mailing list