瀏覽代碼

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()
 	}