Browse Source

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 năm trước cách đây
mục cha
commit
6024e0c79e
1 tập tin đã thay đổi với 3 bổ sung0 xóa
  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()
 	}