1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2025-07-26 11:44:22 -04:00

Don't report error for EOF

This commit is contained in:
V2Ray 2015-09-14 22:01:01 +02:00
parent 3138960443
commit 608f72f537

View File

@ -28,7 +28,7 @@ func (reader CryptionReader) Read(blocks []byte) (int, error) {
if nBytes > 0 {
reader.stream.XORKeyStream(blocks[:nBytes], blocks[:nBytes])
}
if err != nil {
if err != nil && err != io.EOF {
log.Error("Error reading blocks: %v", err)
}
return nBytes, err