diff options
author | Volker Lendecke <vl@samba.org> | 2008-04-11 23:14:53 +0200 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2008-04-11 23:14:53 +0200 |
commit | fd502a74f7f4a9e60761c57bbe5d2dca3a50f877 (patch) | |
tree | f9d3393e4a95b5b62cd549a5ba71483746e27c71 /source3/modules | |
parent | c751386bb8d797dcb714fac19e6d4b161e3d81d0 (diff) | |
download | samba-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')
-rw-r--r-- | source3/modules/vfs_aio_fork.c | 1 |
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; } |