From: Peter Kümmel Date: Wed, 29 Nov 2006 21:57:46 +0000 (+0000) Subject: Fix crash on Mac X-Git-Tag: 1.6.10~11701 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=9feb262948c91bad850f2d98b0f97ebf22eb8752;p=lyx.git Fix crash on Mac Part 3: comment about further investigations git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@16115 a592a061-630c-0410-9148-cb99ea01b6c8 --- diff --git a/src/lyx_main.C b/src/lyx_main.C index 94888113c9..6c0e575f64 100644 --- a/src/lyx_main.C +++ b/src/lyx_main.C @@ -396,9 +396,14 @@ int LyX::exec(int & argc, char * argv[]) support::os::internal_path(package().temp_dir() + "/lyxsocket"))); exit_status = pimpl_->application_->exec(); + + // FIXME: Do we still need this reset? + // I assume it is the reason for strange Mac crashs + // Test by reverting rev 16110 (Peter) // Kill the application object before exiting. This avoid crash // on exit on Linux. pimpl_->application_.reset(); + // Restore original font resources after Application is destroyed. support::restoreFontResources();