-
Notifications
You must be signed in to change notification settings - Fork 348
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
Prevent accessing of global c++ objects once they are deleted #742
base: develop
Are you sure you want to change the base?
Conversation
Softhsm2 seems to be rarely maintained these days and has a bug that leads to segfaults when running through Openssl library destructors. Add the Patch from [1] until this is fixed upstream. [1] softhsm/SoftHSMv2#742 Signed-off-by: Johannes Wiesboeck <[email protected]>
Softhsm2 seems to be rarely maintained these days and has a bug that leads to segfaults when running through Openssl library destructors. Add the Patch from [1] until this is fixed upstream. [1] softhsm/SoftHSMv2#742 Signed-off-by: Johannes Wiesboeck <[email protected]>
Softhsm2 seems to be rarely maintained these days and has a bug that leads to segfaults when running through Openssl library destructors. Add the Patch from [1] until this is fixed upstream. [1] softhsm/SoftHSMv2#742 Signed-off-by: Johannes Wiesboeck <[email protected]>
Softhsm2 seems to be rarely maintained these days and has a bug that leads to segfaults when running through Openssl library destructors. Set the SRC_URI to the current development version as the last "release" is from 2020. Add the Patch from [1] until this is fixed upstream. [1] softhsm/SoftHSMv2#742 Signed-off-by: Johannes Wiesboeck <[email protected]>
hmm reading through #729 it seems to be a fix for openSSL's behavior where its using [1] https://en.cppreference.com/w/cpp/utility/program/atexit |
Please rebase on develop and mark as ready when ready. |
Fixes (Maybe) softhsm#729. Reset objects_deleted after reset is called.
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.
Not sure if there is a better way but I guess this work unless we look into some refactoring.
Maybe add a comment with the reason for using a objects_deleted
.
Fixes (Maybe) #729.
Reset objects_deleted after reset is called.