-
Notifications
You must be signed in to change notification settings - Fork 5
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
sync with upstream release/v0.47.x #418
sync with upstream release/v0.47.x #418
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@@ -379,7 +379,7 @@ | |||
&group.EventProposalPruned{ | |||
ProposalId: proposal.Id, | |||
Status: proposal.Status, | |||
TallyResult: &proposal.FinalTallyResult, | |||
TallyResult: &proposal.FinalTallyResult, //nolint: gosec |
Check failure
Code scanning / Golang security checks by gosec
Implicit memory aliasing in for loop. Error
@@ -774,7 +782,7 @@ | |||
continue | |||
} | |||
|
|||
if err := os.WriteFile(dir+"/keyhash", passwordHash, 0o555); err != nil { | |||
if err := os.WriteFile(dir+"/keyhash", passwordHash, 0o555); err != nil { //nolint: gosec |
Check failure
Code scanning / Golang security checks by gosec
Expect WriteFile permissions to be 0600 or less Error
Co-authored-by: mmsqe <mavis@crypto.com> Signed-off-by: yihuang <huang@crypto.com>
bufHdr.Cap = sHdr.Len | ||
bufHdr.Len = sHdr.Len | ||
return buf | ||
return unsafe.Slice(unsafe.StringData(s), len(s)) // ref https://github.com/golang/go/issues/53003#issuecomment-1140276077 |
Check warning
Code scanning / Golang security checks by gosec
Use of unsafe calls should be audited Warning
bufHdr.Cap = sHdr.Len | ||
bufHdr.Len = sHdr.Len | ||
return buf | ||
return unsafe.Slice(unsafe.StringData(s), len(s)) // ref https://github.com/golang/go/issues/53003#issuecomment-1140276077 |
Check warning
Code scanning / Golang security checks by gosec
Use of unsafe calls should be audited Warning
d00edcb
into
crypto-org-chain:release/v0.47.x
Description
Closes: #XXXX
Author Checklist
All items are required. Please add a note to the item if the item is not applicable and
please add links to any relevant follow up issues.
I have...
!
in the type prefix if API or client breaking changeCHANGELOG.md
Reviewers Checklist
All items are required. Please add a note if the item is not applicable and please add
your handle next to the items reviewed if you only reviewed selected items.
I have...