From d62563342e8c83d67dbcfb0c4b8e2ed886742006 Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Mon, 28 Apr 2008 10:31:49 +0200 Subject: Remove connection_struct->mem_ctx, connection_struct is its own parent (This used to be commit 559180f7d30606d1999399d954ceedc798c669a4) --- source3/modules/vfs_fileid.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source3/modules/vfs_fileid.c') diff --git a/source3/modules/vfs_fileid.c b/source3/modules/vfs_fileid.c index 5954a10ddb..1cbd857a35 100644 --- a/source3/modules/vfs_fileid.c +++ b/source3/modules/vfs_fileid.c @@ -182,7 +182,7 @@ static int fileid_connect(struct vfs_handle_struct *handle, struct fileid_handle_data *data; const char *algorithm; - data = talloc_zero(handle->conn->mem_ctx, struct fileid_handle_data); + data = talloc_zero(handle->conn, struct fileid_handle_data); if (!data) { DEBUG(0, ("talloc_zero() failed\n")); return -1; -- cgit