r3072: Fix for bug #1947 - incorrect use of getpwnam() etc. interface.
authorJeremy Allison <jra@samba.org>
Tue, 19 Oct 2004 23:41:26 +0000 (23:41 +0000)
committerGerald (Jerry) Carter <jerry@samba.org>
Wed, 10 Oct 2007 15:53:00 +0000 (10:53 -0500)
Jeremy.
(This used to be commit aaab1120849efca11c68bdce9285bad25e05eecf)

source3/torture/cmd_vfs.c

index bfce4b88b41c9d405c950d91231b53f058bb1846..43661f1d6cbf3cc2749f38f74cf0378dfc93ecd4 100644 (file)
@@ -538,8 +538,6 @@ static NTSTATUS cmd_stat(struct vfs_state *vfs, TALLOC_CTX *mem_ctx, int argc, c
        printf("  Modify: %s", ctime(&(st.st_mtime)));
        printf("  Change: %s", ctime(&(st.st_ctime)));
 
-       SAFE_FREE(pwd);
-       SAFE_FREE(grp);
        return NT_STATUS_OK;
 }
 
@@ -606,8 +604,6 @@ static NTSTATUS cmd_fstat(struct vfs_state *vfs, TALLOC_CTX *mem_ctx, int argc,
        printf("  Modify: %s", ctime(&(st.st_mtime)));
        printf("  Change: %s", ctime(&(st.st_ctime)));
 
-       SAFE_FREE(pwd);
-       SAFE_FREE(grp);
        return NT_STATUS_OK;
 }
 
@@ -662,8 +658,6 @@ static NTSTATUS cmd_lstat(struct vfs_state *vfs, TALLOC_CTX *mem_ctx, int argc,
        printf("  Modify: %s", ctime(&(st.st_mtime)));
        printf("  Change: %s", ctime(&(st.st_ctime)));
        
-       SAFE_FREE(pwd);
-       SAFE_FREE(grp);
        return NT_STATUS_OK;
 }