mirror of
https://github.com/SagerNet/sing.git
synced 2025-04-03 11:57:39 +03:00
Fix buffer WriteZeroN
This commit is contained in:
parent
01c915e1e4
commit
0d701cfff0
1 changed files with 1 additions and 1 deletions
|
@ -230,7 +230,7 @@ func (b *Buffer) WriteZeroN(n int) error {
|
|||
if b.end+n > b.Cap() {
|
||||
return io.ErrShortBuffer
|
||||
}
|
||||
for i := b.end; i <= b.end+n; i++ {
|
||||
for i := b.end; i < b.end+n; i++ {
|
||||
b.data[i] = 0
|
||||
}
|
||||
b.end += n
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue