<p>Am 14.06.2017 11:13 schrieb "Gabor Boros" <<a href="mailto:mlnglsts@bgss.hu">mlnglsts@bgss.hu</a>>:<br>
><br>
> 2017. 06. 14. 10:28 keltezéssel, José Mejuto írta:<br>
>><br>
>> That's wrong for sure, x is not initialized to nil, not in Linux nor in Windows.<br>
><br>
><br>
> With the below code caption of the form not changed on Linux for me.<br>
><br>
><br>
> procedure TForm1.FormCreate(Sender: TObject);<br>
> var<br>
>   x:TPanel;<br>
><br>
> begin<br>
>   if Assigned(x) then Caption:='Assigned';<br>
> end;</p>
<p>In this example the content of "x" is undefined as it's a local variable. The value of it is simply what is currently on the stack which *can* be Nil.</p>
<p>Regards,<br>
Sven</p>