mirror of
https://github.com/doublecmd/doublecmd.git
synced 2026-06-28 10:02:14 +00:00
FIX: Bug [0001958] Wrong encoding of the system error message in network locations (regression in 0.8)
This commit is contained in:
parent
1e0cfc454f
commit
9554dffd81
1 changed files with 4 additions and 1 deletions
|
|
@ -1354,7 +1354,10 @@ end;
|
|||
|
||||
function mbSysErrorMessage(ErrorCode: Integer): String;
|
||||
begin
|
||||
Result := CeSysToUtf8(SysErrorMessage(ErrorCode));
|
||||
Result := SysErrorMessage(ErrorCode);
|
||||
{$IF (FPC_FULLVERSION < 30004)}
|
||||
Result := CeSysToUtf8(Result);
|
||||
{$ENDIF}
|
||||
end;
|
||||
|
||||
function mbGetModuleName(Address: Pointer): String;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue