From 892243cef79ceb0251c6e742a26556fc8fb405f6 Mon Sep 17 00:00:00 2001 From: Jeremy Harris Date: Sun, 10 Oct 2021 22:20:52 +0100 Subject: [PATCH] FreeBSD: fix sendfile shim, again --- src/OS/os.c-FreeBSD | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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; -- 2.30.2