Remove unnecessary recursion.

This commit is contained in:
David Howden 2015-06-30 23:05:59 +10:00
parent 0b455fc176
commit 00cce15102

2
sum.go
View File

@ -78,7 +78,7 @@ func SumAtoms(r io.ReadSeeker) (string, error) {
fallthrough
case "moov", "udta", "ilst":
return SumAtoms(r)
continue
case "mdat": // stop when we get to the data
h := sha1.New()