mirror of
https://github.com/v2fly/v2ray-core.git
synced 2025-02-20 23:47:21 -05:00
fix shadowsocks ota
This commit is contained in:
parent
5a32cd8602
commit
26aa48d4f9
@ -81,6 +81,11 @@ func (this *ChunkReader) Read() (*alloc.Buffer, error) {
|
||||
// There is a potential buffer overflow here. Large buffer is 64K bytes,
|
||||
// while uin16 + 10 will be more than that
|
||||
length := serial.BytesToUint16(buffer.Value[:2]) + AuthSize
|
||||
if length > alloc.BufferSize {
|
||||
// Theoretically the size of a chunk is 64K, but most Shadowsocks implementations used <4K buffer.
|
||||
buffer.Release()
|
||||
buffer = alloc.NewLocalBuffer(int(length) + 128)
|
||||
}
|
||||
if _, err := io.ReadFull(this.reader, buffer.Value[:length]); err != nil {
|
||||
buffer.Release()
|
||||
return nil, err
|
||||
|
Loading…
x
Reference in New Issue
Block a user