On Sun, 30 Oct 2011, Giuseppe Vittucci wrote:
 I am running gretl 1.9.5 on Ubuntu 11.10.
 Here is a simple code to replicate the issue:
 nulldata 500
 function bundle pippo(scalar n)
    bundle pluto
    matrix x = I(n)
    pluto["mymat"] = x
    return pluto
 end function
 bundle pluto = pippo(3)
 bundle pluto = pippo(4)
 Click on the bundle from the "session icon view".
 Gretl quits with a segmentation fault error. 
Thanks, I've now found the problem and it's fixed in CVS (snapshots 
will follow). The bug was triggered if you had the icon view window 
open when a given named bundle was replaced: the icon would still 
point to the (now invalid) old bundle.
Allin Cottrell