Rinat,

Please look at 
https://stackoverflow.com/questions/17168982/exception-error-c0000005-in-vc

Exception code c0000005 is the code for an access violation. That means that 
your program is accessing (either reading or writing) a memory address to which 
it does not have rights. Most commonly this is caused by:

Accessing a stale pointer. That is accessing memory that has already been 
deallocated. Note that such stale pointer accesses do not always result in 
access violations. Only if the memory manager has returned the memory to the 
system do you get an access violation.
Reading off the end of an array. This is when you have an array of length N and 
you access elements with index >=N.
To solve the problem you'll need to do some debugging. If you are not in a 
position to get the fault to occur under your debugger on your development 
machine you should get a crash dump file and load it into your debugger. This 
will allow you to see where in the code the problem occurred and hopefully lead 
you to the solution. You'll need to have the debugging symbols associated with 
the executable in order to see meaningful stack traces.

-- 
You received this message because you are subscribed to the Google Groups 
"bareos-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to