-
Notifications
You must be signed in to change notification settings - Fork 82
New issue
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
sumdb/dirhash: fix a panic when argument is not a directory #16
Conversation
This PR (HEAD: 26b037e) has been imported to Gerrit for code review. Please visit https://go-review.googlesource.com/c/mod/+/457075 to see it. Tip: You can toggle comments from me using the |
Message from Bryan Mills: Patch Set 1: (5 comments) Please don’t reply on this GitHub thread. Visit golang.org/cl/457075. |
This PR (HEAD: 9fbbc03) has been imported to Gerrit for code review. Please visit https://go-review.googlesource.com/c/mod/+/457075 to see it. Tip: You can toggle comments from me using the |
Message from Kuma: Patch Set 2: (6 comments) Please don’t reply on this GitHub thread. Visit golang.org/cl/457075. |
This PR (HEAD: e3d0940) has been imported to Gerrit for code review. Please visit https://go-review.googlesource.com/c/mod/+/457075 to see it. Tip: You can toggle comments from me using the |
Message from Kuma: Patch Set 3: (1 comment) Please don’t reply on this GitHub thread. Visit golang.org/cl/457075. |
Message from Bryan Mills: Patch Set 3: Code-Review+2 Run-TryBot+1 (1 comment) Please don’t reply on this GitHub thread. Visit golang.org/cl/457075. |
Message from Gopher Robot: Patch Set 3: (1 comment) Please don’t reply on this GitHub thread. Visit golang.org/cl/457075. |
Message from Gopher Robot: Patch Set 3: TryBot-Result+1 (1 comment) Please don’t reply on this GitHub thread. Visit golang.org/cl/457075. |
Message from Bryan Mills: Patch Set 3: (1 comment) Please don’t reply on this GitHub thread. Visit golang.org/cl/457075. |
This patch fixes a case where a path to a non directory can cause DirHash func to panic. Fixes: golang/go#57269.
This PR (HEAD: a17ca1a) has been imported to Gerrit for code review. Please visit https://go-review.googlesource.com/c/mod/+/457075 to see it. Tip: You can toggle comments from me using the |
Message from Bryan Mills: Patch Set 4: Auto-Submit+1 Code-Review+2 Run-TryBot+1 (1 comment) Please don’t reply on this GitHub thread. Visit golang.org/cl/457075. |
Message from Gopher Robot: Patch Set 4: (1 comment) Please don’t reply on this GitHub thread. Visit golang.org/cl/457075. |
Message from Gopher Robot: Patch Set 4: TryBot-Result+1 (1 comment) Please don’t reply on this GitHub thread. Visit golang.org/cl/457075. |
Message from Kuma: Patch Set 4: (2 comments) Please don’t reply on this GitHub thread. Visit golang.org/cl/457075. |
This patch fixes a case where a path to a non directory can cause DirHash func to panic. Fixes golang/go#57269 Change-Id: I743970dcafdf3bfee94baf4b714429a404decda9 GitHub-Last-Rev: a17ca1a GitHub-Pull-Request: #16 Reviewed-on: https://go-review.googlesource.com/c/mod/+/457075 Run-TryBot: Bryan Mills <bcmills@google.com> Auto-Submit: Bryan Mills <bcmills@google.com> Reviewed-by: Benny Siegert <bsiegert@gmail.com> Reviewed-by: Bryan Mills <bcmills@google.com> TryBot-Result: Gopher Robot <gobot@golang.org>
This PR is being closed because golang.org/cl/457075 has been merged. |
This patch fixes a case where a path to a non directory can cause DirHash func to panic.
Fixes golang/go#57269