On Fri, 8 Mar 2019, Allin Cottrell wrote:
On Fri, 8 Mar 2019, Marcin Błażejowski wrote:
> Hi,
>
> simple script:
> ----------------------
> set verbose off
> open australia.gdt
>
> series Y = lpau
> list X = e2 lpus le
>
> ols Y X --simple
> COEFF = $model.coeff
> STDER = $model.stderr
>
> # This works:
> eval COEFF ./ STDER
>
> #... but this does not:
> eval $model.coeff ./ $model.stderr
> ----------------------
>
> GDB sayes: "double free or corruption (fasttop)" and Valgrind said:
> Invalid free() / delete / delete[] / realloc() [...]
Thanks, Marcin. I've been working in that area (model accessors) lately and
may have broken something -- or perhaps this bug has been lurking for a
while? Anyway, should be fixed soon.
That was recent breakage and it's now fixed in git.
Allin