In some inherited legacy code, I've traced a problem with random garbage appearing in output to a non-initialized data structure. It's defined as:
MyArray: array of array of ShortString;
As we read values from this structure, we're sometimes getting junk that is clearly coming from a Bad Place, and which changes every time we run it.
I thought that this would be the correct way to initialize this array:
FillChar (MyArray, SizeOf (MyArray), 0)
However, as I started reading various sites, I began to doubt myself. Is that the best/correct way to initialize this array? Is 0 the correct FillValue, or should it maybe be #32?
ShowMessage(IntToStr(SizeOf(MyArray)));can you predict the result? :) – user246408 Aug 10 '12 at 16:11