Am 05.07.19 um 16:23 schrieb Allin Cottrell:
On Fri, 5 Jul 2019, Artur Tarassow wrote:
> the following sample script leads to a crash of gretl using the latest
> git version under Ubuntu 19.04.
Confirmed. Here's a minimal version of the problem you found:
<hansl>
open denmark.gdt -q
bundle b = null
list b.ALL = null
list b.A = LRM LRY
list b.B = IBO
eval b
b.ALL += b.A b.B
eval b.ALL
</hansl>
Note that there was no crash if the penultimate line was replaced by
list b.ALL += b.A b.B
It's always a good idea to be explicit about the target type when you're
using list-special syntax (in this case, concatenating list elements
with just space separation).
Nonetheless, gretl obviously shouldn't crash on the non-explicit
version, and that's now fixed in git.
Thanks for this information as well as the fix, Allin!
Best,
Artur