Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update src/crypto/crypto_util.h
Co-authored-by: Darshan Sen <raisinten@gmail.com>
  • Loading branch information
mhdawson and RaisinTen authored Oct 14, 2021
commit 8bad8589c14c775bafee01f86febdbc97f84eaf3
2 changes: 1 addition & 1 deletion src/crypto/crypto_util.h
Original file line number Diff line number Diff line change
Expand Up @@ -552,7 +552,7 @@ struct EnginePointer {
if (engine != nullptr) {
if (finish_on_exit) {
// This also does the equivalent of ENGINE_free.
ENGINE_finish(engine);
CHECK_EQ(ENGINE_finish(engine), 1);
} else {
ENGINE_free(engine);
Comment thread
mhdawson marked this conversation as resolved.
Outdated
}
Expand Down