diff options
author | Stefan Metzmacher <metze@samba.org> | 2006-01-25 12:19:49 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:51:28 -0500 |
commit | 5497dfe64ad810a2a3fb22da6869d311894bfed0 (patch) | |
tree | c5169e11cb732756fa39307c05a9dfc5a2374ff5 /source4/ntvfs/cifs | |
parent | 60954d80e1afd0527a5fa426bf02e9359ed19890 (diff) | |
download | samba-5497dfe64ad810a2a3fb22da6869d311894bfed0.tar.gz samba-5497dfe64ad810a2a3fb22da6869d311894bfed0.tar.bz2 samba-5497dfe64ad810a2a3fb22da6869d311894bfed0.zip |
r13129: fix the memory hierachie
metze
(This used to be commit 19205b8d89d3d7e99a65938f59412e0c4e8ac5fe)
Diffstat (limited to 'source4/ntvfs/cifs')
-rw-r--r-- | source4/ntvfs/cifs/vfs_cifs.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/source4/ntvfs/cifs/vfs_cifs.c b/source4/ntvfs/cifs/vfs_cifs.c index 412af07aa2..138c9d566f 100644 --- a/source4/ntvfs/cifs/vfs_cifs.c +++ b/source4/ntvfs/cifs/vfs_cifs.c @@ -93,7 +93,7 @@ static NTSTATUS cvfs_connect(struct ntvfs_module_context *ntvfs, machine_account = lp_parm_bool(req->tcon->service, "cifs", "use_machine_account", False); - private = talloc(req->tcon, struct cvfs_private); + private = talloc(ntvfs, struct cvfs_private); if (!private) { return NT_STATUS_NO_MEMORY; } @@ -178,6 +178,7 @@ static NTSTATUS cvfs_disconnect(struct ntvfs_module_context *ntvfs, struct cvfs_private *private = ntvfs->private_data; talloc_free(private); + ntvfs->private_data = NULL; return NT_STATUS_OK; } |