You are not logged in.
Pages: 1
I think there's an issue or bug inside TRawUTF8List.SetTextPtr method. With certain file sizes it fails.
Here is code to reproduce it
procedure TForm2.btn3Click(Sender: TObject);
var
List: TRawUTF8List;
begin
List := TRawUTF8List.Create;
try
try
List.LoadFromFile('MapList.dat');
except
memo1.Lines.Add('err loading');
end;
memo1.Lines.Add(List.Count.ToString);
finally
List.Free;
end;
end;
And file to test with: https://www.dropbox.com/s/knojv1j04xzvs … t.dat?dl=0
Last edited by igors233 (2018-06-13 19:20:35)
Offline
Please check https://synopse.info/fossil/info/641362ff27
Thanks for the report!
Offline
Thanks, it's working now.
Offline
Pages: 1