Correctly propagate error in AuthenticationReader readBuffer

This commit is contained in:
风扇滑翔翼 2024-03-05 03:43:14 +08:00 committed by yuhan6665
parent a994bf8b04
commit 87ef07d5f4

View File

@ -178,7 +178,7 @@ func (r *AuthenticationReader) readInternal(soft bool, mb *buf.MultiBuffer) erro
if size <= buf.Size { if size <= buf.Size {
b, err := r.readBuffer(int32(size), int32(padding)) b, err := r.readBuffer(int32(size), int32(padding))
if err != nil { if err != nil {
return nil return err
} }
*mb = append(*mb, b) *mb = append(*mb, b)
return nil return nil