]> git.donarmstrong.com Git - lilypond.git/commitdiff
Issue 4293/3: smobs.tcc: robustify {mark,print}_trampoline in connection with free_smob
authorDavid Kastrup <dak@gnu.org>
Wed, 18 Feb 2015 15:40:49 +0000 (16:40 +0100)
committerDavid Kastrup <dak@gnu.org>
Wed, 18 Feb 2015 15:50:45 +0000 (16:50 +0100)
Guilev2 has little qualms calling mark/print even after freeing a smob.
So we clean out the pointer to smob data when freeing/unregistering it,
and let the mark/print trampolines detect this condition and punt.

lily/include/smobs.tcc

index c0a62535f5e4f830200c8b4a249ae955032d414f..b4dacacaa325ec8759bf321e368b4c8e138cc0ff 100644 (file)
@@ -32,14 +32,20 @@ template <class Super>
 SCM
 Smob_base<Super>::mark_trampoline (SCM arg)
 {
-  return (Super::unsmob (arg))->mark_smob ();
+  Super *ptr = Super::unsmob (arg);
+  if (ptr)
+    return ptr->mark_smob ();
+  return SCM_UNDEFINED;
 }
 
 template <class Super>
 int
 Smob_base<Super>::print_trampoline (SCM arg, SCM port, scm_print_state *p)
 {
-  return (Super::unsmob (arg))->print_smob (port, p);
+  Super *ptr = Super::unsmob (arg);
+  if (ptr)
+    return ptr->print_smob (port, p);
+  return 0;
 }
 
 template <class Super>
@@ -96,6 +102,7 @@ Smob_base<Super>::unregister_ptr (SCM obj)
 {
   Super *p = Super::unchecked_unsmob (obj);
   scm_gc_unregister_collectable_memory (p, sizeof (*p), smob_name_.c_str ());
+  SCM_SET_SMOB_DATA (obj, static_cast<Super *> (0));
   return p;
 }