tpl: check that types in args match the target func's type
authorbep <bjorn.erik.pedersen@gmail.com>
Fri, 1 May 2015 15:00:22 +0000 (17:00 +0200)
committerbep <bjorn.erik.pedersen@gmail.com>
Fri, 1 May 2015 15:00:34 +0000 (17:00 +0200)
Fixes #1095

tpl/template_funcs.go
tpl/template_test.go

index 9a446d094ab44e4341c286c101cfe6fb522c78c2..4eb06719a0b7020cd256646978214cae33ba21ed 100644 (file)
@@ -672,6 +672,12 @@ func applyFnToThis(fn, this reflect.Value, args ...interface{}) (reflect.Value,
                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) {
+                       return reflect.ValueOf(nil), errors.New("called apply using " + xt.String() + " as type " + targ.String())
+               }
+       }
+
        res := fn.Call(n)
 
        if len(res) == 1 || res[1].IsNil() {
index 0c68516e566498c1a49049499b7c23ee07d10556..aa501d58ac2ecb779388e3c3672fb1a4c282b120 100644 (file)
@@ -23,7 +23,10 @@ func TestTplGoFuzzReports(t *testing.T) {
                {"{{ slicestr \"000000\" 10}}", 2},
                // Issue #1091
                {"{{apply .C \"first\" 0 0 0}}", 2},
-               {"{{seq 3e80}}", 2}} {
+               {"{{seq 3e80}}", 2},
+               // Issue #1095
+               {"{{apply .C \"urlize\" " +
+                       "\".\"}}", 2}} {
                templ := New()
 
                d := &Data{