Am working on VC++ Console Application.
This application sends a file from Appdata\Roaming folder for a period of time.
What happens is am getting this Crash error :
Problem signature:
Problem Event Name: APPCRASH
Application Name: App.exe
Application Version: 1.0.0.2
Application Timestamp: 51c02fa8
Fault Module Name: PCMeter.exe
Fault Module Version: 1.0.0.2
Fault Module Timestamp: 51c02fa8
Exception Code: c0000005
Exception Offset: 000069eb
OS Version: 6.1.7601.2.1.0.256.48
Locale ID: 1033
Additional Information 1: 0a9e
Additional Information 2: 0a9e372d3b4ad19135b953a78882e789
Additional Information 3: 0a9e
Additional Information 4: 0a9e372d3b4ad19135b953a78882e789
Could anyone please help me to resolve this issue
c0000005
is the code for an access violation. You'll need to stop referring to memory that is not valid to fix this. – Ethelethelbert