From 38a7b68764bd89fc2bdcdcb19d6d9a6713278c08 Mon Sep 17 00:00:00 2001 From: Joe Neeman Date: Fri, 25 Apr 2008 11:53:09 +1000 Subject: [PATCH] Fix crash on stemlets without a head. --- lily/stem.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lily/stem.cc b/lily/stem.cc index 9d39552f57..e63b96019a 100644 --- a/lily/stem.cc +++ b/lily/stem.cc @@ -702,7 +702,7 @@ Stem::print (SCM smob) if (!lh && stemlet && !beam) return SCM_EOL; - if (robust_scm2int (lh->get_property ("duration-log"), 0) < 1) + if (lh && robust_scm2int (lh->get_property ("duration-log"), 0) < 1) return SCM_EOL; if (is_invisible (me)) -- 2.39.2