Hi Michael,

Sounds like an off by one error.

Do you use for loops? While loops. Do loops? Etc to process elements in the 
array? If so, do you have a # define to limit the array index to 100 rather 
than using some embedded magic number? 

#define LIMIT 101
...
int index;
int array[LIMIT];
for (index=0; index < LIMIT; index++) {
    do_stuff (array [index]);
    ...
}

And apologies if granny already knows how to suck eggs!

Somewhere in your code there's most likely an array indexing operation that's 
gone over the 101th array entry.

HTH 

Cheers, 
Norm. 
-- 
Sent from my Android device with K-9 Mail. Please excuse my brevity.
_______________________________________________
QL-Users Mailing List

Reply via email to