How to find an Access violation error(involving CStringT) in 3rd Party program
-
I get the following error upon program close - NOT while program is running, but when it shuts down: 'Notify.exe': Loaded 'C:\Windows\System32\rsaenh.dll' First-chance exception at 0x01001df6 in Notify.exe: 0xC0000005: Access violation reading location 0xfeeefeee. Unhandled exception at 0x01001df6 in Notify.exe: 0xC0000005: Access violation reading location 0xfeeefeee. How do I find the error. Doesn't happen in Debug compilation l only in Release mode. A C++ programming language novice, but striving to learn
-
I get the following error upon program close - NOT while program is running, but when it shuts down: 'Notify.exe': Loaded 'C:\Windows\System32\rsaenh.dll' First-chance exception at 0x01001df6 in Notify.exe: 0xC0000005: Access violation reading location 0xfeeefeee. Unhandled exception at 0x01001df6 in Notify.exe: 0xC0000005: Access violation reading location 0xfeeefeee. How do I find the error. Doesn't happen in Debug compilation l only in Release mode. A C++ programming language novice, but striving to learn
Larry Mills Sr wrote:
I get the following error upon program close - NOT while program is running, but when it shuts down
:laugh: Welcome in the CP's memorable quotes [^].
If the Lord God Almighty had consulted me before embarking upon the Creation, I would have recommended something simpler. -- Alfonso the Wise, 13th Century King of Castile.
This is going on my arrogant assumptions. You may have a superb reason why I'm completely wrong. -- Iain Clarke
[My articles] -
I get the following error upon program close - NOT while program is running, but when it shuts down: 'Notify.exe': Loaded 'C:\Windows\System32\rsaenh.dll' First-chance exception at 0x01001df6 in Notify.exe: 0xC0000005: Access violation reading location 0xfeeefeee. Unhandled exception at 0x01001df6 in Notify.exe: 0xC0000005: Access violation reading location 0xfeeefeee. How do I find the error. Doesn't happen in Debug compilation l only in Release mode. A C++ programming language novice, but striving to learn
More information is needed. How do you know it involves a CString if the application is third party? The rsaenh.dll is a Microsoft DLL which provides cryptographic functionality. The 0xfeeefeee value is heap memory that has been deleted. Btw, you can attach the visual studio debugger to release builds. How to: Debug a Release Build[^] Best Wishes, -David Delaune
-
More information is needed. How do you know it involves a CString if the application is third party? The rsaenh.dll is a Microsoft DLL which provides cryptographic functionality. The 0xfeeefeee value is heap memory that has been deleted. Btw, you can attach the visual studio debugger to release builds. How to: Debug a Release Build[^] Best Wishes, -David Delaune
I say CStringT because that is what is shown when I ask for debug info ie, " ~CStringT { } " I'm already setup for release build debugging. But as I said I don't use CStringT I use only CString. A C++ programming language novice, but striving to learn