From: Bjørn Erik Pedersen Date: Sun, 3 Jun 2018 20:23:48 +0000 (+0300) Subject: tpl/strings: Remove overflow check in strings.Repeat X-Git-Tag: v0.42~19 X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=0c6c98e401b22fa2737bb7266742ae88722825ab;p=brevno-suite%2Fhugo tpl/strings: Remove overflow check in strings.Repeat The test fails on 32 bit systems. Let it panic instead. --- diff --git a/tpl/strings/strings.go b/tpl/strings/strings.go index 7bd6a9af..d7d8f2d8 100644 --- a/tpl/strings/strings.go +++ b/tpl/strings/strings.go @@ -432,8 +432,6 @@ func (ns *Namespace) Repeat(n, s interface{}) (string, error) { if sn < 0 { return "", errors.New("strings: negative Repeat count") - } else if sn > 0 && len(ss)*sn/sn != len(ss) { - return "", errors.New("strings: Repeat count causes overflow") } return _strings.Repeat(ss, sn), nil diff --git a/tpl/strings/strings_test.go b/tpl/strings/strings_test.go index 6f714702..69863c30 100644 --- a/tpl/strings/strings_test.go +++ b/tpl/strings/strings_test.go @@ -16,7 +16,6 @@ package strings import ( "fmt" "html/template" - "math" "testing" "github.com/gohugoio/hugo/deps" @@ -730,7 +729,7 @@ func TestRepeat(t *testing.T) { // errors {"", tstNoStringer{}, false}, {tstNoStringer{}, "", false}, - {"ab", math.MaxInt64, false}, + {"ab", -1, false}, } { errMsg := fmt.Sprintf("[%d] %v", i, test)