Mitsuo HEIJO

Results 16 issues of Mitsuo HEIJO

Found in fuzz test with [go-fuzz](https://github.com/dvyukov/go-fuzz) input: `"\ue031"` ```main.go package main import "github.com/mattn/anko/parser" func main() { _, err := parser.ParseSrc("\ue031") if err != nil { panic(err) } } ``` ```...

See https://github.com/golang/go/issues/32479 Fixes # . Changes proposed in this pull request: - a - b - c - d

Found in go-fuzz https://github.com/dvyukov/go-fuzz Bad inputs have panic. Some may have the same cause. ```go package yaml_test import ( "testing" "github.com/goccy/go-yaml" ) func TestPanic1(t *testing.T) { data := []byte("0::") var...

## Describe the bug When using `customDomain` and, `endpoint (in sdkOptions)` at the same time on s3 compatible storage e.g. [minio](https://min.io/), the report url built incorrectly. Protocol is already included...

bug

In a non-secure HTTP/2 HEAD request, hyper try to receive an empty body. However, if I send a HEAD request to http://nghttp2.org/httpbin/get, it is successful. They also succeed when executed...

How to reproduce ```go package errorformat_test import ( "testing" "github.com/reviewdog/errorformat" ) func TestPanic(t *testing.T) { _, err := errorformat.NewEfm("%") if err == nil { t.Fatal("should return error") } } ```...

Signed-off-by: Mitsuo Heijo Note on DCO: If the DCO action in the integration test fails, one or more of your commits are not signed off. Please click on the *Details*...

Signed-off-by: Mitsuo Heijo Note on DCO: If the DCO action in the integration test fails, one or more of your commits are not signed off. Please click on the *Details*...

Broken tests...