I have in Delphi application declared tables:
x,y,z,r:array [1..10000000] of double;
t1,t2,t3,t4:array [1..10000000] of integer;
Before everything was ok but now I get in some pcs error (in most pc:s error does not come) :
"The application failed to initialize properly (0xc0000005)"
If I change tables smaller:
x,y,z,r:array [1..5000000] of double;
t1,t2,t3,t4:array [1..5000000] of integer;
error disappears