1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-09-28 14:56:33 -04:00

unexpected eof

This commit is contained in:
v2ray 2016-06-02 21:20:58 +02:00
parent ff0cb89efa
commit b9c88b673b

View File

@ -59,7 +59,7 @@ func (this *AuthChunkReader) Read() (*alloc.Buffer, error) {
_, err := buffer.FillFrom(this.reader)
if err != nil {
buffer.Release()
return nil, err
return nil, io.ErrUnexpectedEOF
}
}
length := serial.BytesToUint16(buffer.Value[:2])
@ -70,7 +70,7 @@ func (this *AuthChunkReader) Read() (*alloc.Buffer, error) {
_, err := buffer.FillFrom(this.reader)
if err != nil {
buffer.Release()
return nil, err
return nil, io.ErrUnexpectedEOF
}
}