At a break point during a Debug session, I get an error popup "'Label Job' has encountered an error" The details say:
An internal error occurred during: "Label Job",
Java.lang.NullPointerException.
I get this when I expand the first element in an array of a structure Variable.
struct image
{
unsigned char *ptr;
int size;
char hsize[2];
}JPEG[2];
The error only occurs when I expand JPEG[0]. I can expand JPEG[1] with out an error. The program compiles and runs fine.
Does anyone know what this error is trying to tell me?