Subject: | Segmentation fault when serializing cyclic data structures |
When trying to serialize a cyclic data structure Data::Pond make perl die
with an segmentation fault:
makholm@makholm:~$ perl -MData::Pond -E '$a = { }; $a->{a} = $a;
Data::Pond::pond_write_datum($a)'
Segmentation fault
makholm@makholm:~$
While it might be quite acceptable for Data::Pond not to support cyclic
data structures, it should at least fail more graceful.