Disable faulty range validation in apply
authorbep <bjorn.erik.pedersen@gmail.com>
Sat, 2 May 2015 09:32:38 +0000 (11:32 +0200)
committerbep <bjorn.erik.pedersen@gmail.com>
Sat, 2 May 2015 09:32:28 +0000 (11:32 +0200)
Fixed #1098

tpl/template_funcs.go
tpl/template_test.go

index 4eb06719a0b7020cd256646978214cae33ba21ed..5b0e919a9eaefdee4182d0ec64884597e5c436dc 100644 (file)
@@ -666,11 +666,12 @@ func applyFnToThis(fn, this reflect.Value, args ...interface{}) (reflect.Value,
                num--
        }
 
-       if len(args) < num {
+       // TODO(bep) see #1098 - also see template_tests.go
+       /*if len(args) < num {
                return reflect.ValueOf(nil), errors.New("Too few arguments")
        } else if len(args) > num {
                return reflect.ValueOf(nil), errors.New("Too many arguments")
-       }
+       }*/
 
        for i := 0; i < num; i++ {
                if xt, targ := n[i].Type(), fn.Type().In(i); !xt.AssignableTo(targ) {
index aa501d58ac2ecb779388e3c3672fb1a4c282b120..3c009c5998a564a6f34d443f51d404b725d17983 100644 (file)
@@ -18,11 +18,11 @@ func TestTplGoFuzzReports(t *testing.T) {
                expectErr int
        }{
                // Issue #1089
-               {"{{apply .C \"first\" }}", 2},
+               //{"{{apply .C \"first\" }}", 2},
                // Issue #1090
                {"{{ slicestr \"000000\" 10}}", 2},
                // Issue #1091
-               {"{{apply .C \"first\" 0 0 0}}", 2},
+               //{"{{apply .C \"first\" 0 0 0}}", 2},
                {"{{seq 3e80}}", 2},
                // Issue #1095
                {"{{apply .C \"urlize\" " +