Unhandled exception at 0x781451eb in ********.exe: 0xC0000005: Access violation reading location 0x0129ffff.

Dear Boost Users, I am new with Boost and I am facing a Unhandled exception. The program I am triying to use is working fine in release mode but crashing in debug mode. Maybe compiler options are not set correctly. Is there something specific for release and/or debug version ? Something to diseable exceptions ? I am working with VStudio 8. I've set the same compiler options for both but I still have the same error. Any ideas ? Thanks, -- View this message in context: http://www.nabble.com/Unhandled-exception-at-0x781451eb-in-********.exe%3A-0... Sent from the Boost - Users mailing list archive at Nabble.com.

I am new with Boost and I am facing a Unhandled exception. The program I am triying to use is working fine in release mode but crashing in debug mode. Maybe compiler options are not set correctly.
Is there something specific for release and/or debug version ? Something to diseable exceptions ?
The exception is "access violation". You can try and catch it before it becomes "unhandled": go to the menu Debug-->Exceptions-->select Win32 exceptions check box. The VS will break when the exception occures, and you'll see what happened (probably, you try to access a destroyed or uninitialized object).

On Tue, Mar 3, 2009 at 3:39 PM, ddribes
Dear Boost Users,
I am new with Boost and I am facing a Unhandled exception. The program I am triying to use is working fine in release mode but crashing in debug mode. Maybe compiler options are not set correctly.
Is there something specific for release and/or debug version ? Something to diseable exceptions ?
I am working with VStudio 8. I've set the same compiler options for both but I still have the same error.
Any ideas ?
Can you produce a small program that crashes and reply with the source code? My guess is it's probably a programming error and it sometimes happens that programs don't crash in debug mode when they do in release mode. Regards, Pete
participants (3)
-
ddribes
-
Igor R
-
Peter Barker