[SCM] Samba Shared Repository - branch v3-0-test updated - release-3-0-28-94-g0cbc435

Volker Lendecke vl at samba.org
Thu Jan 17 16:20:23 GMT 2008


The branch, v3-0-test has been updated
       via  0cbc43562e358e30ba5d431ca54c42bb2d09dc44 (commit)
      from  1a1fe0094dad0c66a26c87941760ad66c389cc50 (commit)

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


- Log -----------------------------------------------------------------
commit 0cbc43562e358e30ba5d431ca54c42bb2d09dc44
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 3885758..f1e0c50 100644
--- a/source/modules/vfs_hpuxacl.c
+++ b/source/modules/vfs_hpuxacl.c
@@ -141,7 +141,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));
@@ -215,7 +215,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