You are not logged in.
Pages: 1
Hi Arnaud, we got a 0xc000005 in ExistsIniName, cause P was nil (Empty String assigned to PChar)
SynCommons - Line 29306ff
function ExistsIniName(P: PUTF8Char; UpperName: PAnsiChar): boolean;
var table: PNormTable;
begin
result := false;
table := @NormToUpperAnsi7;
if (P <> nil) and (P^<>'[') then // <<-- Add this pls
repeat
if P^=' ' then begin
repeat inc(P) until P^<>' '; // trim left ' '
if P^=#0 then
break;
can you pls add this to repository - Many Thx
Rad Studio 12.1 Santorini
Offline
Offline
Pages: 1