From: Ralph Boehme Date: Wed, 20 May 2020 14:44:15 +0000 (+0200) Subject: vfs_aio_pthread: realign create_private_open_data() args X-Git-Tag: ldb-2.2.0~404 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9bb9d6d12cf2da2783b8ba1676b8019385b5d741;p=thirdparty%2Fsamba.git vfs_aio_pthread: realign create_private_open_data() args Signed-off-by: Ralph Boehme Reviewed-by: Jeremy Allison --- diff --git a/source3/modules/vfs_aio_pthread.c b/source3/modules/vfs_aio_pthread.c index 89d3253a1e4..74871930634 100644 --- a/source3/modules/vfs_aio_pthread.c +++ b/source3/modules/vfs_aio_pthread.c @@ -352,7 +352,11 @@ static int open_async(const struct smb_filename *smb_fname, * opd is always safely freed in all codepath so no * memory leaks. */ - opd = create_private_open_data(fsp->conn, smb_fname, fsp, flags, mode); + opd = create_private_open_data(fsp->conn, + smb_fname, + fsp, + flags, + mode); if (opd == NULL) { DEBUG(10, ("open_async: Could not create private data.\n")); return -1;