On Sat, 3 Jul 2010, denis joubert wrote:
Using gretl-1.9.1 with libgretl, i discovered that
destroy_dataset does not free all memory allocated by laggenr.
In file transform.c into get_transform function, testvec allocate an
array which is never freed.
Is there another way to free this memory ?
The testvec function allocates library workspace that is not part
of the dataset. This memory is freed by gretl_transforms_cleanup,
which is called by the general exit function, libgretl_cleanup.
Allin Cottrell