Opened 5 years ago
Closed 4 years ago
#1692 closed defect (fixed)
s11n doesn't work with srfi-69 hash-tables
Reported by: | megane | Owned by: | |
---|---|---|---|
Priority: | major | Milestone: | someday |
Component: | extensions | Version: | |
Keywords: | s11n hash-table srfi-69 | Cc: | |
Estimated difficulty: |
Description
Trying to use the deserialized hash-table causes a segfault:
(import srfi-69) (import s11n) (define (store-and-load o file) (with-output-to-file file (lambda [] (serialize o))) (with-input-from-file file (lambda [] (deserialize)))) (let ([ht (store-and-load (make-hash-table) "out.ser")]) (print "ht: " ht) (hash-table-set! ht 1 1)) ;; -> segfault
Change History (4)
comment:1 Changed 5 years ago by
Resolution: | → invalid |
---|---|
Status: | new → closed |
comment:3 Changed 4 years ago by
Resolution: | invalid |
---|---|
Status: | closed → reopened |
The duplicate bug was fixed by me but this bug still persists. Will investigate.
comment:4 Changed 4 years ago by
Resolution: | → fixed |
---|---|
Status: | reopened → closed |
Now fixed with the fix in #768
Note: See
TracTickets for help on using
tickets.
Duplicate of #768