mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 13:38:31 +02:00
* Patch from Iluha Companets to avoid crash when registry XML file is empty. Fixes issue #40912
This commit is contained in:
parent
28aaa672a1
commit
cd13d5bb3a
@ -603,9 +603,13 @@ begin
|
||||
FDocument.Free;
|
||||
FDocument:=Nil;
|
||||
end;
|
||||
ReadXMLFile(FDocument,S);
|
||||
if (FDocument=Nil) then
|
||||
try
|
||||
ReadXMLFile(FDocument,S);
|
||||
if (FDocument=Nil) then
|
||||
CreateEmptyDoc;
|
||||
except
|
||||
CreateEmptyDoc;
|
||||
end;
|
||||
SetRootKey('HKEY_CURRENT_USER');
|
||||
FDirty:=False;
|
||||
end;
|
||||
|
@ -190,8 +190,10 @@ procedure TRegistry.SysRegFree;
|
||||
|
||||
begin
|
||||
if Assigned(FSysData) then
|
||||
begin
|
||||
TXMLRegistry(FSysData).Flush;
|
||||
TXMLRegistryInstance.FreeXMLRegistry(TXMLRegistry(FSysData));
|
||||
TXMLRegistryInstance.FreeXMLRegistry(TXMLRegistry(FSysData));
|
||||
end;
|
||||
end;
|
||||
|
||||
function TRegistry.SysCreateKey(Key: UnicodeString): Boolean;
|
||||
|
Loading…
Reference in New Issue
Block a user