Opened 13 years ago
Last modified 2 years ago
#287 new defect
Circular structures overflow the stack even though there's a print-object method
| Reported by: | stassats | Owned by: | somebody |
|---|---|---|---|
| Priority: | major | Milestone: | 1.9.3 |
| Component: | other | Version: | 1.3.0-dev |
| Keywords: | Cc: | stassats@… | |
| Parent Tickets: |
Description
(defstruct watch
parent)
(defmethod print-object ((watch watch) stream)
(print-unreadable-object (watch stream :type t)
(format stream "a")))
(defstruct inotify
children)
(defun test ()
(let* ((inotify (make-inotify))
(watch (make-watch :parent inotify)))
(setf (inotify-children inotify) watch)
(write inotify :circle t)
(terpri)
(write inotify)))
(test)
#S(INOTIFY :CHILDREN #<WATCH a>) Maximum error depth exceeded (18 nested errors) with 'Stack overflow.'.
Change History (18)
comment:1 Changed 13 years ago by
| Cc: | stassats@… added |
|---|---|
| Summary: | Circularl structures overflow the stack even though there's a print-object method → Circular structures overflow the stack even though there's a print-object method |
comment:2 Changed 12 years ago by
| Milestone: | → 1.3.0 |
|---|---|
| Version: | → 1.3.0-dev |
comment:3 Changed 12 years ago by
| Milestone: | 1.3.0 → 2.0 |
|---|
comment:5 Changed 12 years ago by
| Milestone: | 2.0.0 → 1.4.0 |
|---|
comment:10 Changed 5 years ago by
| Milestone: | 1.6.2 → 1.7.0 |
|---|
comment:15 Changed 4 years ago by
| Milestone: | 1.8.1 → 1.9.0 |
|---|
comment:16 Changed 3 years ago by
| Milestone: | 1.9.0 → 1.9.1 |
|---|
comment:17 Changed 3 years ago by
| Milestone: | 1.9.1 → 1.9.2 |
|---|
comment:18 Changed 2 years ago by
| Milestone: | 1.9.2 → 1.9.3 |
|---|
Note: See
TracTickets for help on using
tickets.
Ticket retargeted after milestone closed