swarm/bmt: ignore data longer then 4096 bytes in Hasher.Write

This commit is contained in:
Janos Guljas 2018-08-07 14:17:52 +02:00
parent 042191338d
commit ead220898a

View file

@ -318,7 +318,7 @@ func (h *Hasher) Sum(b []byte) (s []byte) {
// with every full segment calls writeSection in a go routine
func (h *Hasher) Write(b []byte) (int, error) {
l := len(b)
if l == 0 {
if l == 0 || l > 4096 {
return 0, nil
}
t := h.getTree()