Range check error in unit StNTLog, TStNTEventLog.elAddEntry,
StrArray[I] := StrAlloc(Length(Strings[I]));
should be:
StrArray[I] := StrAlloc(Length(Strings[I])+1);
to provide room for the null char that the following StrPCopy adds..
Log in to post a comment.