mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 04:18:31 +02:00
* Do not set strval for unicode strings in tc_emit_stringdef
This commit is contained in:
parent
d3a0a2dddf
commit
6ba102ee57
@ -506,7 +506,11 @@ function get_next_varsym(def: tabstractrecorddef; const SymList:TFPHashObjectLis
|
||||
(node.nodetype=stringconstn) then
|
||||
begin
|
||||
strlength:=tstringconstnode(node).len;
|
||||
strval:=tstringconstnode(node).asconstpchar;
|
||||
if (tstringconstnode(node).cst_type in [cst_unicodestring,cst_widestring]) then
|
||||
{ further on, tstringconstnode(node).valuews is used directly for this case }
|
||||
strval:=nil
|
||||
else
|
||||
strval:=tstringconstnode(node).asconstpchar;
|
||||
{ the def may have changed from e.g. RawByteString to
|
||||
AnsiString(CP_ACP) }
|
||||
if node.resultdef.typ=stringdef then
|
||||
|
Loading…
Reference in New Issue
Block a user