aboutsummaryrefslogtreecommitdiff
path: root/src/internal/poll/sendfile_solaris.go
diff options
context:
space:
mode:
Diffstat (limited to 'src/internal/poll/sendfile_solaris.go')
-rw-r--r--src/internal/poll/sendfile_solaris.go3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/internal/poll/sendfile_solaris.go b/src/internal/poll/sendfile_solaris.go
index 762992e9eb..748c85131e 100644
--- a/src/internal/poll/sendfile_solaris.go
+++ b/src/internal/poll/sendfile_solaris.go
@@ -20,6 +20,9 @@ func SendFile(dstFD *FD, src int, pos, remain int64) (int64, error) {
return 0, err
}
defer dstFD.writeUnlock()
+ if err := dstFD.pd.prepareWrite(dstFD.isFile); err != nil {
+ return 0, err
+ }
dst := int(dstFD.Sysfd)
var written int64