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 <[EMAIL PROTECTED]>
Date: Thu Jan 17 17:17:52 2008 +0100
Fix two uninitialized variables in vfs_hpuxacl.c
Thanks to David Leonard <[EMAIL PROTECTED]>, 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