08.12.2012, 11:07
Quote:
Quick question!
Here's some obviously out of bounds code: pawn Код:
Is this the thing I've seen in some places on this forum called "Memory Leak"? Or is that something else completely... |
With natives or costum functions you can reproduce something like that
pawn Код:
#include <a_samp>
new
arr1[3],
arr2[4];
stock SetCell(array[], cell, value) {
return (array[cell] = value);
}
main()
{
arr2[0] = 0; // if we never use arr2 the compiler would leave it away
SetCell(arr1, 3, 5); // resulting in an invalid memory error
printf("%d", arr2[0]); // prints 5
}