mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-21 20:29:32 +02:00
* fixed crash with empty codepage
git-svn-id: trunk@234 -
This commit is contained in:
parent
4766e62dd2
commit
edffc31139
@ -176,11 +176,11 @@ unit charset;
|
||||
hp : punicodemap;
|
||||
|
||||
const
|
||||
mapcache : string = '';
|
||||
mapcachep : punicodemap = nil;
|
||||
|
||||
begin
|
||||
if (mapcache=s) and (mapcachep^.cpname=s) then
|
||||
if assigned(mapcachep) and
|
||||
(mapcachep^.cpname=s) then
|
||||
begin
|
||||
getmap:=mapcachep;
|
||||
exit;
|
||||
@ -191,7 +191,6 @@ unit charset;
|
||||
if hp^.cpname=s then
|
||||
begin
|
||||
getmap:=hp;
|
||||
mapcache:=s;
|
||||
mapcachep:=hp;
|
||||
exit;
|
||||
end;
|
||||
|
Loading…
Reference in New Issue
Block a user