PDA

View Full Version : Suddenly Nothing Happens



Atomic_Sheep
16th September 2013, 21:55
Hi Guys,

Turned on my computer today and suddenly my program no longer runs. Everything compiles fine, no errors pop up, however I get the following message:

"exited with code -1073741819".

I have no idea what that means, what happened or what to do next. Everything ran perfectly less than 24 hours ago!

ChrisW67
16th September 2013, 23:16
-1073741819 == 0xC0000005 Access violation

You program is accessing memory that does not belong to it. This is usually the result of using an uninitialised or null pointer. Run it in your debugger until it crashes then look at the stack backtrace to identify where your code is broken.

Atomic_Sheep
17th September 2013, 11:54
Thanks will look into that, at least it seems I've found the lines of code causing the problem, so that's a start!