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
What version of protobuf and what language are you using? Version: 3.11.1 Language: C++
What operating system (Linux, Windows, ...) and version? Windows
What runtime / compiler are you using (e.g., python version or gcc version) Visual Studio 2019
What did you do? Compile - debug build run tests
What did you expect to see No test failures
What did you see instead? Stops due to debug assertion in setlocale call
Problem in src/google/protobuf/stubs/stringprintf_unittest.cc Two occurrences of code like this:
char* old_locale = setlocale(LC_CTYPE, nullptr); setlocale(LC_CTYPE, "en_US.utf8"); // invalidates old_locale here ... setlocale(LC_CTYPE, old_locale); // assertion failure
The text was updated successfully, but these errors were encountered:
What debug assertion are you seeing?
Sorry, something went wrong.
Looks like this was fixed in #8735
VemundH
No branches or pull requests
What version of protobuf and what language are you using?
Version: 3.11.1
Language: C++
What operating system (Linux, Windows, ...) and version?
Windows
What runtime / compiler are you using (e.g., python version or gcc version)
Visual Studio 2019
What did you do?
Compile - debug build
run tests
What did you expect to see
No test failures
What did you see instead?
Stops due to debug assertion in setlocale call
Problem in src/google/protobuf/stubs/stringprintf_unittest.cc
Two occurrences of code like this:
The text was updated successfully, but these errors were encountered: