FreeBSD Bugzilla – Attachment 229480 Details for
Bug 258848
mail/exim: update 4.94.2 -> 4.95
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
[patch]
sendfile patch, fixes SIGSEGV using clamd via TCP
exim_sendfile.patch (text/plain), 451 bytes, created by
Oliver Heesakkers
on 2021-11-13 18:21:23 UTC
(
hide
)
Description:
sendfile patch, fixes SIGSEGV using clamd via TCP
Filename:
MIME Type:
Creator:
Oliver Heesakkers
Created:
2021-11-13 18:21:23 UTC
Size:
451 bytes
patch
obsolete
>--- OS/os.c-FreeBSD.orig 2021-10-11 17:03:56.119681000 +0200 >+++ OS/os.c-FreeBSD 2021-10-11 17:04:27.802597000 +0200 >@@ -16,10 +16,11 @@ > 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; >-*offp = loff + written; >+if (offp) *offp = loff + written; > return (ssize_t)written; > }
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 258848
:
228332
| 229480