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
If q, err := New(content, level) returns an error when the content is too long https://github.com/skip2/go-qrcode/blob/da1b6568686e89143e94f980a98bc2dbd5537f13/qrcode.go#L114C2-L114C31 'q' may be nil and is dereferenced at qrcode.go:116.
panic: runtime error: invalid memory address or nil pointer dereference [signal SIGSEGV: segmentation violation code=0x2 addr=0x0 pc=0x10061adb8]
Err check must be before the lines
go-qrcode/qrcode.go
Lines 116 to 117 in da1b656
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
If q, err := New(content, level) returns an error when the content is too long
https://github.com/skip2/go-qrcode/blob/da1b6568686e89143e94f980a98bc2dbd5537f13/qrcode.go#L114C2-L114C31
'q' may be nil and is dereferenced at qrcode.go:116.
Err check must be before the lines
go-qrcode/qrcode.go
Lines 116 to 117 in da1b656
The text was updated successfully, but these errors were encountered: