We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Describe the bug
Starting with 30170d6, the library uses memset_s for the secure string allocator.
This is problematic, because:
memset_s
Apart from that, the unit tests won't build because many spots the test code tries to convert between std::string and the custom allocator string.
To Reproduce Steps to reproduce the behavior:
JSONCPP_USING_SECURE_MEMORY
Expected behavior
The code should compile with any C++ compiler. The tests should compile regardless of the string allocator.
Desktop (please complete the following information):
Additional context Add any other context about the problem here.
The text was updated successfully, but these errors were encountered:
Hello ! I partially supported what you are talking about in #1478 & #1479
Sorry, something went wrong.
No branches or pull requests
Describe the bug
Starting with 30170d6, the library uses memset_s for the secure string allocator.
This is problematic, because:
memset_s
Apart from that, the unit tests won't build because many spots the test code tries to convert between std::string and the custom allocator string.
To Reproduce
Steps to reproduce the behavior:
JSONCPP_USING_SECURE_MEMORY
Expected behavior
The code should compile with any C++ compiler.
The tests should compile regardless of the string allocator.
Desktop (please complete the following information):
Additional context
Add any other context about the problem here.
The text was updated successfully, but these errors were encountered: