GNOME Bugzilla – Bug 695719
lsw dummy test intermittently segfaults
Last modified: 2013-03-13 12:59:36 UTC
Created attachment 238716 [details] [review] Don't do manual memory management for libsocialweb Contact structs GObject (and hence Vala) already knows how to memory-manage a Contact, because it's a boxed type. Trying to do our own memory-management anyway results in an occasional (50%?) double-free and crash.
I've verified that the generated C setter still copies it: SwContact* _tmp0_; SwContact* _tmp1_; g_return_if_fail (self != NULL); _tmp0_ = value; _tmp1_ = __vala_SwContact_copy0 (_tmp0_); __vala_SwContact_free0 (self->priv->_lsw_contact); self->priv->_lsw_contact = _tmp1_; g_object_notify ((GObject *) self, "lsw-contact"); and the destructor frees it: __vala_SwContact_free0 (self->priv->_lsw_contact);
Review of attachment 238716 [details] [review]: Looks good to me.
Comment on attachment 238716 [details] [review] Don't do manual memory management for libsocialweb Contact structs 89481c9dac3
Fixed in git for 0.9.2