Преглед изворни кода

Invoke String/Error methods on addressable vals.

If a type implements a Stringer or error interface with a pointer receiver
and the value being formatted is addressable, the interface should be
invoked even when the DisablePointerMethods option is set.
DisablePointerMethods is only intended to prevent the potentially unsafe
action of stepping around type-safety restriction to invoke a Stringer or
error interface with a pointer to an unaddressable value.
Dave Collins пре 13 година
родитељ
комит
6024e0c79e
1 измењених фајлова са 3 додато и 0 уклоњено
  1. 3 0
      spew/common.go

+ 3 - 0
spew/common.go

@@ -140,6 +140,9 @@ func handleMethods(cs *ConfigState, w io.Writer, v reflect.Value) (handled bool)
 		}
 		viface = v.Addr().Interface()
 	} else {
+		if v.CanAddr() {
+			v = v.Addr()
+		}
 		viface = v.Interface()
 	}