fix #54 - SEGFAULT on exit when build with FPC 3.2.0

This commit is contained in:
Basile Burg 2020-08-23 16:04:34 +02:00
parent c48a8f7e8a
commit 79190c984a
2 changed files with 3 additions and 2 deletions

View File

@ -8,6 +8,7 @@
## Regressions fixed
- Messages, the messages matching to the call stack printed on assert failure were not clickable anymore. The regression was introduced when the support for GNU-style messages was added.
- Segfault on exit since built with FPC 3.2.0. (#54)
## Bugs fixed

View File

@ -63,7 +63,7 @@ begin
EntitiesConnector.addSingleService(self);
fname := getDocPath + OptsFname;
if OptsFname.fileExists then
fMru.LoadFromFile(fname);
fMru.LoadFromFile(fname, TEncoding.Default);
if fMru.Count.equals(0) then
fMru.Insert(0, '(your input here)');
@ -94,7 +94,7 @@ end;
destructor TProcInputWidget.destroy;
begin
// note that mru list max count is not saved.
fMru.SaveToFile(getDocPath + OptsFname);
fMru.SaveToFile(getDocPath + OptsFname, TEncoding.UTF8);
fMru.Free;
inherited;
end;