You're looking at Less Wrong's discussion board. This includes all posts, including those that haven't been promoted to the front page yet. For more information, see About Less Wrong.

RolfAndreassen comments on Open thread, July 23-29, 2013 - Less Wrong Discussion

9 Post author: David_Gerard 22 July 2013 10:34AM

You are viewing a comment permalink. View the original post to see all comments and the full post content.

Comments (197)

You are viewing a single comment's thread. Show more comments above.

Comment author: RolfAndreassen 23 July 2013 03:24:42AM *  7 points [-]

This usually indicates a badly-initialised pointer - either it's zero and shouldn't be, or it is fooling a test-for-zero check through being filled with random garbage, and thus preventing program flow from correctly returning to the calling function. Suggest running the debugger to see if the problem goes away - this indicates the second issue, as the debugger will initialise all pointers not given an explicit value to zero; if it persists, you should at least be able to get a stack trace.