# HG changeset patch # User Rik # Date 1323880784 28800 # Node ID c15ddadffbfb4cdd47244e16ac659cca7442298c # Parent f913363318e005e0e0329b8697e39ff4ac39f9df Fix segfault in diary class (Bug #35065) * pager.cc (flush_current_contents_to_diary): Fix typo where function called itself, rather than do_flush_current_contents_to_diary. diff --git a/src/pager.cc b/src/pager.cc --- a/src/pager.cc +++ b/src/pager.cc @@ -321,7 +321,7 @@ octave_pager_stream::flush_current_contents_to_diary (void) { if (instance_ok ()) - instance->flush_current_contents_to_diary (); + instance->do_flush_current_contents_to_diary (); } void