From 23e9dc79941be24d381d2e2c85600d4a3d0d6921 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Daniel=20Mart=C3=AD?= Date: Wed, 25 Apr 2018 11:45:53 +0900 Subject: [PATCH] html/template: always write untyped nil as JS null MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit text/template recently added support for passing untyped nil as function call arguments, as those would be mixed up with "missing argument" values before. See CL 95215. html/template now needs a small change to adapt to that new possibility. In particular, when printing values as JS bytes, its code was written under the assumption that the values would never be untyped nil - that is, the reflect.Value would always be valid. Short-circuit indirectToJSONMarshaler on an untyped nil, to avoid the panic and fall back to the existing " null " output. Before this change and on 1.10, printing a typed nil and an untyped nil resulted in: null "" After this change, one will get: null null Fixes #24717. Change-Id: I03cd10ef64b96e837bacc9ccf4cf25624d80de1c Reviewed-on: https://go-review.googlesource.com/109215 Run-TryBot: Daniel Martí TryBot-Result: Gobot Gobot Reviewed-by: Rhys Hiltner Reviewed-by: Brad Fitzpatrick --- src/html/template/js.go | 8 ++++++++ src/html/template/js_test.go | 1 + 2 files changed, 9 insertions(+) diff --git a/src/html/template/js.go b/src/html/template/js.go index 239395f8d3..e02fdb9751 100644 --- a/src/html/template/js.go +++ b/src/html/template/js.go @@ -123,6 +123,14 @@ var jsonMarshalType = reflect.TypeOf((*json.Marshaler)(nil)).Elem() // indirectToJSONMarshaler returns the value, after dereferencing as many times // as necessary to reach the base type (or nil) or an implementation of json.Marshal. func indirectToJSONMarshaler(a interface{}) interface{} { + // text/template now supports passing untyped nil as a func call + // argument, so we must support it. Otherwise we'd panic below, as one + // cannot call the Type or Interface methods on an invalid + // reflect.Value. See golang.org/issue/18716. + if a == nil { + return nil + } + v := reflect.ValueOf(a) for !v.Type().Implements(jsonMarshalType) && v.Kind() == reflect.Ptr && !v.IsNil() { v = v.Elem() diff --git a/src/html/template/js_test.go b/src/html/template/js_test.go index 7484f60b54..cf2a0d2987 100644 --- a/src/html/template/js_test.go +++ b/src/html/template/js_test.go @@ -149,6 +149,7 @@ func TestJSValEscaper(t *testing.T) { {"]]>", `"]]\u003e"`}, {"