Fix missing clear iovecList for unix vectorised packet writer

This commit is contained in:
世界 2023-12-21 20:17:43 +08:00
parent 70fb993e30
commit ee3203e36c
No known key found for this signature in database
GPG key ID: CD109927C34A63C4

View file

@ -84,6 +84,9 @@ func (w *SyscallVectorisedPacketWriter) WriteVectorisedPacket(buffers []*buf.Buf
if innerErr != nil { if innerErr != nil {
err = innerErr err = innerErr
} }
for index := range iovecList {
iovecList[index] = unix.Iovec{}
}
return err return err
} }