From: Ralph Boehme Date: Fri, 17 May 2019 10:19:06 +0000 (+0200) Subject: vfs_fruit: finally, remove ad_handle from struct adouble X-Git-Tag: ldb-2.0.5~546 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e266daaed149561b746dbb8d5e9523862f0057b5;p=thirdparty%2Fsamba.git vfs_fruit: finally, remove ad_handle from struct adouble Bug: https://bugzilla.samba.org/show_bug.cgi?id=13968 Signed-off-by: Ralph Boehme Reviewed-by: Jeremy Allison --- diff --git a/source3/modules/vfs_fruit.c b/source3/modules/vfs_fruit.c index 9689c6464e0..00e371edcb7 100644 --- a/source3/modules/vfs_fruit.c +++ b/source3/modules/vfs_fruit.c @@ -413,7 +413,6 @@ struct ad_entry { }; struct adouble { - vfs_handle_struct *ad_handle; int ad_fd; bool ad_opened; adouble_type_t ad_type; @@ -1870,7 +1869,6 @@ static struct adouble *ad_alloc(TALLOC_CTX *ctx, vfs_handle_struct *handle, } } - ad->ad_handle = handle; ad->ad_type = type; ad->ad_magic = AD_MAGIC; ad->ad_version = AD_VERSION;