summaryrefslogtreecommitdiffstats
path: root/source3/modules/vfs_cacheprime.c
diff options
context:
space:
mode:
authorTim Prouty <tprouty@samba.org>2009-01-31 20:51:04 -0800
committerTim Prouty <tprouty@samba.org>2009-02-09 23:46:12 -0800
commit122dbbf00acc1768f98e5b57e94aab2b61671f40 (patch)
tree97dd65074e1d07f582ba945f50a9fb90d078cd05 /source3/modules/vfs_cacheprime.c
parentfe5b0b595c926aea0916541ceeaf610bc018cb63 (diff)
downloadsamba-122dbbf00acc1768f98e5b57e94aab2b61671f40.tar.gz
samba-122dbbf00acc1768f98e5b57e94aab2b61671f40.tar.xz
samba-122dbbf00acc1768f98e5b57e94aab2b61671f40.zip
s3 vfs: Add a destructor to the fsp extension data API
I'm not certain if the dummy pointer is needed in struct vfs_fsp_data, but I added it to be consistent with the comment below.
Diffstat (limited to 'source3/modules/vfs_cacheprime.c')
-rw-r--r--source3/modules/vfs_cacheprime.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/modules/vfs_cacheprime.c b/source3/modules/vfs_cacheprime.c
index fed051ca8d5..71b850505a7 100644
--- a/source3/modules/vfs_cacheprime.c
+++ b/source3/modules/vfs_cacheprime.c
@@ -54,7 +54,7 @@ static bool prime_cache(
SMB_OFF_T * last;
ssize_t nread;
- last = (SMB_OFF_T *)VFS_ADD_FSP_EXTENSION(handle, fsp, SMB_OFF_T);
+ last = (SMB_OFF_T *)VFS_ADD_FSP_EXTENSION(handle, fsp, SMB_OFF_T, NULL);
if (!last) {
return False;
}