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
Here's the code that will crash.
#include "quill/Quill.h" #include "fmt/format.h" int main() { quill::enable_console_colours(); quill::start(); quill::Logger* logger = quill::get_logger(); // construct a string with '\0' inside std::string msg = fmt::format("{} {} {} {} {}", (char)0, (char)0, (char)0, (char)0, "sssssssssssssssssssssss"); QUILL_LOG_INFO(logger, "{}", msg); // crash here }
Although it's an incorrect usage, I think it should not cause crash.
The text was updated successfully, but these errors were encountered:
b259b7f
hey, thanks for reporting this. It is now fixed in master
Sorry, something went wrong.
No branches or pull requests
Here's the code that will crash.
Although it's an incorrect usage, I think it should not cause crash.
The text was updated successfully, but these errors were encountered: