From: Volker Lendecke Date: Fri, 11 Apr 2008 21:14:53 +0000 (+0200) Subject: Remove a redundant TALLOC_FREE X-Git-Tag: samba-3.3.0pre1~2738^2~4 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=8e348ab8652e1893be78384404f57df1dbbcea48;p=thirdparty%2Fsamba.git Remove a redundant TALLOC_FREE --- diff --git a/source/modules/vfs_aio_fork.c b/source/modules/vfs_aio_fork.c index 28428f2e498..7914e8f4014 100644 --- a/source/modules/vfs_aio_fork.c +++ b/source/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; }