I use windbg to debug the crash dump, in the following output from the windbg, you can see that "first/second chance not available", Why the first/second chance not available here? what does this mean?
This dump file has an exception of interest stored in it.
The stored exception information can be accessed via .ecxr.
(e38.2270): Access violation - code c0000005 (first/second chance not available)
This dump file has an exception of interest stored in it
implies an exception was raised. The seg fault is an exception. Do not confuse C++ exceptions with SEH exceptions. – Mobocracy