summaryrefslogtreecommitdiff
path: root/source3/modules/vfs_aio_fork.c
diff options
context:
space:
mode:
authorVolker Lendecke <vl@samba.org>2008-04-11 23:14:53 +0200
committerVolker Lendecke <vl@samba.org>2008-04-11 23:14:53 +0200
commitfd502a74f7f4a9e60761c57bbe5d2dca3a50f877 (patch)
treef9d3393e4a95b5b62cd549a5ba71483746e27c71 /source3/modules/vfs_aio_fork.c
parentc751386bb8d797dcb714fac19e6d4b161e3d81d0 (diff)
downloadsamba-fd502a74f7f4a9e60761c57bbe5d2dca3a50f877.tar.gz
samba-fd502a74f7f4a9e60761c57bbe5d2dca3a50f877.tar.bz2
samba-fd502a74f7f4a9e60761c57bbe5d2dca3a50f877.zip
Remove a redundant TALLOC_FREE
(This used to be commit 8e348ab8652e1893be78384404f57df1dbbcea48)
Diffstat (limited to 'source3/modules/vfs_aio_fork.c')
-rw-r--r--source3/modules/vfs_aio_fork.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/source3/modules/vfs_aio_fork.c b/source3/modules/vfs_aio_fork.c
index 28428f2e49..7914e8f401 100644
--- a/source3/modules/vfs_aio_fork.c
+++ b/source3/modules/vfs_aio_fork.c
@@ -436,7 +436,6 @@ static NTSTATUS create_aio_child(struct aio_child_list *children,
if (socketpair(AF_UNIX, SOCK_STREAM, 0, fdpair) == -1) {
status = map_nt_error_from_unix(errno);
DEBUG(10, ("socketpair() failed: %s\n", strerror(errno)));
- TALLOC_FREE(result);
goto fail;
}