-
Notifications
You must be signed in to change notification settings - Fork 29.6k
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
src: refactor crypto code with RAII cleanup #23014
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.
I'd suggest to rename fail
to failed
which would make the added comment redundant IMO.
@tniessen - thanks, done. |
looks like an unrelated flake in the CI:
@addaleax - do you know if it is known (and / or captured elsewhere) and can be ignored here? |
@gireeshpunathil that failure was caused by another change and was fixed. you should be able to rebuild the worker job without problems. |
Re-run of failing node-test-commit-custom-suites-freestyle. |
second time failure in |
@gireeshpunathil Can you try rebasing onto the current master and start a fresh CI? |
f704422
to
f82c4f5
Compare
use more idiomatic expressions with RAII primitives, instead of old style goto PR-URL: nodejs#23014 Reviewed-By: Daniel Bevenius <[email protected]> Reviewed-By: James M Snell <[email protected]> Reviewed-By: Sakthipriyan Vairamani <[email protected]> Reviewed-By: Anna Henningsen <[email protected]> Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Tobias Nießen <[email protected]> Reviewed-By: Joyee Cheung <[email protected]> Reviewed-By: Ruben Bridgewater <[email protected]>
f82c4f5
to
406e3ad
Compare
use more idiomatic expressions with RAII primitives, instead of old style goto PR-URL: #23014 Reviewed-By: Daniel Bevenius <[email protected]> Reviewed-By: James M Snell <[email protected]> Reviewed-By: Sakthipriyan Vairamani <[email protected]> Reviewed-By: Anna Henningsen <[email protected]> Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Tobias Nießen <[email protected]> Reviewed-By: Joyee Cheung <[email protected]> Reviewed-By: Ruben Bridgewater <[email protected]>
use more idiomatic expressions with RAII primitives, instead of old style goto PR-URL: #23014 Reviewed-By: Daniel Bevenius <[email protected]> Reviewed-By: James M Snell <[email protected]> Reviewed-By: Sakthipriyan Vairamani <[email protected]> Reviewed-By: Anna Henningsen <[email protected]> Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Tobias Nießen <[email protected]> Reviewed-By: Joyee Cheung <[email protected]> Reviewed-By: Ruben Bridgewater <[email protected]>
use more idiomatic expressions with RAII primitives, instead of old style goto
motivated by @addaleax 's efforts on the same, such as in #22981
Checklist
make -j4 test
(UNIX), orvcbuild test
(Windows) passes