From: Mike Solomon Date: Thu, 28 Jul 2011 22:03:17 +0000 (+0200) Subject: Fixes uninitialized value in page-layout-problem.cc. X-Git-Tag: release/2.15.7-1~9 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=e3b681b76d976be03d77f6c240281b0691cd6352;p=lilypond.git Fixes uninitialized value in page-layout-problem.cc. --- diff --git a/lily/page-layout-problem.cc b/lily/page-layout-problem.cc index 7445d21f62..17c2912e14 100644 --- a/lily/page-layout-problem.cc +++ b/lily/page-layout-problem.cc @@ -138,7 +138,7 @@ Page_layout_problem::get_footnotes_from_lines (SCM lines, int counter, Paper_boo } // find the maximum X_AXIS length - Real max_length; + Real max_length = -infinity_f; for (vsize i = 0; i < fn_count; i++) max_length = max (max_length, footnote_number_stencils[i]->extent (X_AXIS).length ());