Try to fix check-attr bug (#34029)

pull/32642/head^2
wxiaoguang 2025-03-27 13:07:17 +08:00 committed by GitHub
parent 3c95b0758f
commit 96e7369515
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -280,7 +280,7 @@ func (wr *nulSeparatedAttributeWriter) Write(p []byte) (n int, err error) {
}
}
wr.tmp = append(wr.tmp, p...)
return len(p), nil
return l, nil
}
func (wr *nulSeparatedAttributeWriter) ReadAttribute() <-chan attributeTriple {