s3: Remove unused stat structs being passed to SMB_VFS_CREATE_FILE
authorTim Prouty <tprouty@samba.org>
Fri, 5 Jun 2009 23:13:58 +0000 (16:13 -0700)
committerTim Prouty <tprouty@samba.org>
Wed, 10 Jun 2009 20:13:26 +0000 (13:13 -0700)
source3/smbd/open.c
source3/smbd/posix_acls.c

index fdfa99953f3c874a914064bfd280b235f92839ef..65a1ded1b889b3284acb247eac6595dce5c2cd2b 100644 (file)
@@ -2601,11 +2601,8 @@ static NTSTATUS open_directory(connection_struct *conn,
 NTSTATUS create_directory(connection_struct *conn, struct smb_request *req, const char *directory)
 {
        NTSTATUS status;
-       SMB_STRUCT_STAT sbuf;
        files_struct *fsp;
 
-       SET_STAT_INVALID(sbuf);
-       
        status = SMB_VFS_CREATE_FILE(
                conn,                                   /* conn */
                req,                                    /* req */
@@ -2623,7 +2620,7 @@ NTSTATUS create_directory(connection_struct *conn, struct smb_request *req, cons
                NULL,                                   /* ea_list */
                &fsp,                                   /* result */
                NULL,                                   /* pinfo */
-               &sbuf);                                 /* psbuf */
+               NULL);                                  /* psbuf */
 
        if (NT_STATUS_IS_OK(status)) {
                close_file(req, fsp, NORMAL_CLOSE);
index 08b1c8c41a1ce7c404c4c7528d6dec70da26f406..1029b764b5e1b4b9191a41324a7f6ada6d11bd66 100644 (file)
@@ -3465,15 +3465,12 @@ NTSTATUS append_parent_acl(files_struct *fsp,
        char *parent_name = NULL;
        SEC_ACE *new_ace = NULL;
        unsigned int num_aces = pcsd->dacl->num_aces;
-       SMB_STRUCT_STAT sbuf;
        NTSTATUS status;
        int info;
        unsigned int i, j;
        SEC_DESC *psd = dup_sec_desc(talloc_tos(), pcsd);
        bool is_dacl_protected = (pcsd->type & SEC_DESC_DACL_PROTECTED);
 
-       ZERO_STRUCT(sbuf);
-
        if (psd == NULL) {
                return NT_STATUS_NO_MEMORY;
        }
@@ -3499,7 +3496,7 @@ NTSTATUS append_parent_acl(files_struct *fsp,
                NULL,                                   /* ea_list */
                &parent_fsp,                            /* result */
                &info,                                  /* pinfo */
-               &sbuf);                                 /* psbuf */
+               NULL);                                  /* psbuf */
 
        if (!NT_STATUS_IS_OK(status)) {
                return status;