Access Error problems, anyone know why this happens?

cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

Access Error problems, anyone know why this happens?

1,120 Views
Nilson
Contributor I
Hi, im having those problems with my program...
 

Access Error -- PC = 0x00005060 Error on operand write

Access Error -- PC = 0x00005ADC Error on operand read

Do you guys know what could be causing it? Its a pointer problem? Im out of memory?

Thanks.

Labels (1)
0 Kudos
2 Replies

422 Views
Nilson
Contributor I
Well, i found the problem, i did a stupid mistake and didnt see it.
 
I was using m_listen everytime i deleted a file in my ftp server and it was crashing, now i just open the socket once and its fine.
 
But the question remains, its a memory or pointer problem? 
 
Thanks.


Message Edited by Nilson on 2007-11-26 09:04 PM
0 Kudos

422 Views
mccPaul
Contributor I
An access error exception occurs when you access memory in an illegal way. This could be trying to execute code in an area specified as data only, trying to read data from non-existent memory, writing to a read only area, etc, etc. It doesn't mean that there is anything actually wrong with the memory.
 
Paul.
 
 
0 Kudos