--- Begin Message ---
Subject: |
segfault with (weird use of) make-struct and make-vtable |
Date: |
Mon, 5 Nov 2012 22:24:55 +0100 |
This code makes guile segfault, tested in the versions 2.0.6.49 and 2.0.6.66 ..
--------
(define v-blocks (make-vtable "pR")) ;; note that this is a protected tail array read-only
(define block-2 (make-struct v-blocks 1 ;; note that this only has one element
'((0 2 2 0)
(0 2 2 0)
(0 0 0 0)
(0 0 0 0))))
;; (struct-ref block-2 0);; => Segmentation fault (core dumped)
------
There isn't really any reason (for me) to use make-struct or make-vtable (instead of srfi-9) as they are very low level, but it still shouldn't segfault.
So now it's reported.
--
// add
--- End Message ---
--- Begin Message ---
Subject: |
Re: bug#12808: segfault with (weird use of) make-struct and make-vtable |
Date: |
Tue, 05 Mar 2013 18:23:46 +0100 |
User-agent: |
Gnus/5.13 (Gnus v5.13) Emacs/24.2 (gnu/linux) |
On Mon 05 Nov 2012 22:24, Areth Unknown <address@hidden> writes:
> This code makes guile segfault, tested in the versions 2.0.6.49 and
> 2.0.6.66 ..
>
> --------
> (define v-blocks (make-vtable "pR")) ;; note that this is a protected
> tail array read-only
>
> (define block-2 (make-struct v-blocks 1 ;; note that this only has one
> element
> '((0 2 2 0)
> (0 2 2 0)
> (0 0 0 0)
> (0 0 0 0))))
>
> ;; (struct-ref block-2 0)
> ;; => Segmentation fault (core dumped)
> ------
Thanks for the report; will be fixed in 2.0.8.
Andy
--
http://wingolog.org/
--- End Message ---