bug-guile
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

guile segfaults


From: Rouben Rostamian
Subject: guile segfaults
Date: Sun, 4 Jan 2004 23:01:51 -0500

Version: guile--1.6.4

Guile segfaults when given the following code:

   (define a (make-uniform-array 1/3 3 3))
   (uniform-array-set1! a 5.0 (cons 0 0))

This was during my attempt to set the (0, 0) entry of the two-dimensional
array a to 5.0.

As it happens, the syntax is incorrect.  The second line should
have been:

   (uniform-array-set1! a 5.0 '(0 0))
    
Nevertheless, guile shouldn't have segfaulted on wrong input.

Just wanted to let you know.

-- 
Rouben Rostamian




reply via email to

[Prev in Thread] Current Thread [Next in Thread]