Sometimes I get this \"Debug Assertion Failed\" error running my Qt project in debug mode (image). I don\'t know where I wrong because the compiler says nothing and
In our case, the program worked perfectly in DEBUG mode and crashed with the similar error trace in RELEASE mode.
In my case, the RELEASE mode was having msvscrtd.dll in the linker definition. We removed it and the issue resolved.
Alternatively, adding /NODEFAULTLIB to the linker command line arguments also resolved the issue.