01.02.2013, 06:03
You have an array, something like
new array[1500];
and you're trying to use array[1500] somewhere, while array only contains values up to array[1499] (1500 cells 0-1499). It should crash both on your PC and the linux server.
new array[1500];
and you're trying to use array[1500] somewhere, while array only contains values up to array[1499] (1500 cells 0-1499). It should crash both on your PC and the linux server.