We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
String()
Repro:
package main import ( "fmt" "github.com/davecgh/go-spew/spew" ) type X map[int]int func (x X) String() string { return fmt.Sprintf("{M1:%d}", len(x)) } func main() { spew.Dump(X{1: 2}) }
Output:
(main.X) (len=1) (PANIC=runtime error: invalid memory address or nil pointer dereference){ (int) 1: (int) 2 }
Panic occures when taking the len() of the receiver x, which is an invalid pointer.
len()
x
This happens on all versions of go I installed (1.16 to 1.18).
The text was updated successfully, but these errors were encountered:
A workaround is: func main() { spew.Dump(&X{1: 2}) }
Sorry, something went wrong.
Not really. Sometimes the map is not directly accessable, and maybe nested in a deep structure.
I've fixed this issue in my fork of the package: spewerspew/spew@62a6506
Dupe of #115
No branches or pull requests
Repro:
Output:
Panic occures when taking the
len()
of the receiverx
, which is an invalid pointer.This happens on all versions of go I installed (1.16 to 1.18).
The text was updated successfully, but these errors were encountered: