I'm debugging a dll generating a heap issue. I'm working with heap page enabled. Trying many versions of that dll, debug works, release minimum size works but release maximize speed fails.
I know some differences between debug and release so I'm checking possible initialization issues. But can the fact that my dll works in release minimize size but not in release maximum size could give me a little more information about what type of mistake I made ?
What are the main differences differences between the two binaries produced ? (excluding executable size and execution speed of course).
P.S. : my dll contains many QT widgets. I don't know if it could help, but if there are commonly made mistakes with these objects...