From: Joe Neeman Date: Fri, 25 Apr 2008 01:53:09 +0000 (+1000) Subject: Fix crash on stemlets without a head. X-Git-Tag: release/2.11.45-1~6 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=38a7b68764bd89fc2bdcdcb19d6d9a6713278c08;p=lilypond.git Fix crash on stemlets without a head. --- 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))