What does this error mean ?

 
I keep getting this error in my experts log continually..

ArrayInitialize function internal error

The funny thing is the code works fine and does exactly what I want it to do, it is just these errors in the log.

This is an extract from the code I am using.

double array_price[][6];
double mpfx ;

ArrayInitialize(array_price,0);
ArrayCopyRates(array_price,(Symbol()), PERIOD_W1);

mpfx = array_price[0][1];


Thanks.........
 
You attempt to initialize an empty array
BTW it is useless to initialize array before copying
 
Thanks as always Slawa...
Reason: