what does this error mean?: "The application failed to initialize properly (0xc000000
Hello guys,
I have develope a small packer program, which packs&unpacks PE files by examing/altering import tables of the PE files.
Now I have a problem:after i do the packing to the PE file, the packed PE file will be corrupted and if i clicked on it, an error message will be shown: "The application failed to initialize properly (0xc0000005)."
What does this error message mean? Generally, what can be the cause of this error?
thanks in advance
Re: what does this error mean?: "The application failed to initialize properly (0xc000000
[QUOTE]Originally posted by FredLiu
Hello guys,
I have develope a small packer program, which packs&unpacks PE files by examing/altering import tables of the PE files.
Now I have a problem:after i do the packing to the PE file, the packed PE file will be corrupted and if i clicked on it, an error message will be shown:
Quote:
"The application failed to initialize properly (0xc0000005)."
What does this error message mean?
0xC00000005 is an Access Violation...your attempting a memory operation for which you are not allowed.
Quote:
Generally, what can be the cause of this error?
There are a number of different reasons. Run your code under a debugger and examine the call stack.