summaryrefslogtreecommitdiff
path: root/src/OS
diff options
context:
space:
mode:
authorJeremy Harris <jgh146exb@wizmail.org>2021-10-10 22:20:52 +0100
committerJeremy Harris <jgh146exb@wizmail.org>2021-10-11 10:32:48 +0100
commit892243cef79ceb0251c6e742a26556fc8fb405f6 (patch)
treed67ee9d8de11df9292e4ccbba80502cba74526b2 /src/OS
parent6e445b7e5e7b82c8b441a4d891d31c5add3310eb (diff)
downloadexim4-892243cef79ceb0251c6e742a26556fc8fb405f6.tar.gz
FreeBSD: fix sendfile shim, again
Diffstat (limited to 'src/OS')
-rw-r--r--src/OS/os.c-FreeBSD3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/OS/os.c-FreeBSD b/src/OS/os.c-FreeBSD
index 38df91cf4..ac833a29f 100644
--- a/src/OS/os.c-FreeBSD
+++ b/src/OS/os.c-FreeBSD
@@ -16,7 +16,8 @@ Sendfile shim
ssize_t
os_sendfile(int out, int in, off_t * offp, size_t cnt)
{
-off_t loff = *offp, written;
+off_t loff = offp ? *offp : 0;
+off_t written;
if (sendfile(in, out, loff, cnt, NULL, &written, 0) < 0) return (ssize_t)-1;
if (offp) *offp = loff + written;