QUOTE(Tralfaz @ Dec 29 2009, 02:22 AM)

I've had problems where the bug would occur only in the release version, and not the debug!
debug heap ?

, I'm running in this too some times , but's here not the cause .
Another problem , where i'm running into today (or how to make the programmers life complicated ...).
After two hours of searching a new introduced bug, and short before to kick off my machine out off the window

, I found my mistake ...
CODE
BinNode *new_binnode = &m_fluidProp;
for (BinNode *binnode = chor; binnode; binnode = binnode->m_bn_nextbinnode) {
if (binnode = new_binnode) {
return;
}
}
What was wrong with this code (for non programmer's ...)
line 3 should be a comparision , not a assignment ....