From fd502a74f7f4a9e60761c57bbe5d2dca3a50f877 Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Fri, 11 Apr 2008 23:14:53 +0200 Subject: Remove a redundant TALLOC_FREE (This used to be commit 8e348ab8652e1893be78384404f57df1dbbcea48) --- source3/modules/vfs_aio_fork.c | 1 - 1 file changed, 1 deletion(-) (limited to 'source3/modules/vfs_aio_fork.c') 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; } -- cgit