The symbol myLibrary!__scrt_stub_for_is_c_termination_complete+0x12345
appears in the stack trace of a crashed application. It is C++ compiled with MSVC2015 and heavily uses Qt.
myLibrary
does not explicitly implement anything of that name.
Google shows some hits on this name, so apparently it is not particular to this one application. But I cannot find an explanation of it.
__scrt_stub_for_is_c_termination_complete
and the function that it calls. Also was the CRT linked statically (.LIB) or dynamically (.DLL)? Can you show the assembly code of__scrt_stub_for_is_c_termination_complete
? – Verjuice