Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
5answers
1k views

How can I guarantee catching a EXCEPTION_STACK_OVERFLOW structured exception in C++ under Visual Studio 2005?

Background I have an application with a Poof-Crash[1]. I'm fairly certain it is due to a blown stack. The application is Multi-Threaded. I am compiling with "Enable C++ Exceptions: Yes With SEH ...
4
votes
3answers
191 views

intermixing c++ exception handling and SEH (windows)

I have a function in which I call getaddrinfo() to get an sockaddr* which targets memory is allocated by the system. As many may know, you need to call freeaddrinfo() to free the memory allocated by ...
2
votes
1answer
44 views

Structured Exceptions (SE) from standard library calls

I've got code that calls ::fgetpos, which results in a kernel exception that can't be caught (I have option /ehs in my VS 2008 project). But I can't help think that standard library routines should ...
2
votes
1answer
148 views

Ways for an unmanaged Windows process to crash?

I am trying to understand the ways in which an unmanaged user-mode Windows process can "crash" (which is really too much of a catch-all term). Here are the ways I know of so far: Unhandled ...
2
votes
1answer
219 views

How to implement SEH (Structured Exception Handling) in VB6?

Could someone provide some example on implementing SEH in VB6? Everything I've seen so far is in C++
1
vote
1answer
158 views

Consequences of using Structured Exception Handling (SEH)?

I see Doug Harrison has made a good statement of what is "wrong" with using (i.e. catching) structured exceptions (see question #3). But what other consequences are there? For example, what happens ...
1
vote
5answers
1k views

What should I know about Structured Exceptions (SEH) in C++?

What important points about Structured Exceptions should every C++ developer know?
1
vote
2answers
225 views

How do I get the module name that caused a structured exception given a _EXCEPTION_POINTERS struct? (win32 C++)

(Win32 platform c++) Using __try and __finally, how can I get the module name (And address) of the cause for an exception? I call GetExceptionInformation() but from that I am not sure where this ...
0
votes
1answer
62 views

Structured Exception Handler (SEH) does not catch heap corruption

I'm writing small utility (VC 2010, no clr) that does one simple task (rasterizing) using 3rd party library. Later utility will be used by bigger application. Sometimes the utility crashes because of ...
0
votes
2answers
229 views

SEH error reporting

I have a Visual Studio 2008 C++ program where the program is wrapped in a __try/__except block to capture any SEH exceptions. The exception filter creates an error log and gives the user detailed ...
0
votes
2answers
96 views

What exactly is “application-defined” about UnhandledExceptionFilter?

MSDN describes UnhandledExceptionFilter as follows: "An application-defined function that passes unhandled exceptions to the debugger, if the process is being debugged." But this function is clearly ...