From 4af523ca38eb99e910d8de93867dde069105f1d1 Mon Sep 17 00:00:00 2001 From: Hans Baier Date: Sat, 29 Nov 2008 06:37:06 +0000 Subject: [PATCH] * fixed potential crash git-svn-id: svn://localhost/ardour2/branches/3.0@4269 d708f5d6-7413-0410-9779-e7cbd77b26cf --- libs/ardour/ardour/ticker.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/ardour/ardour/ticker.h b/libs/ardour/ardour/ticker.h index 249f6b885f..a3384168d3 100644 --- a/libs/ardour/ardour/ticker.h +++ b/libs/ardour/ardour/ticker.h @@ -61,7 +61,7 @@ public: const SMPTE::Time& transport_smpte); void set_session(Session& s); - void going_away() { Ticker::going_away(); _jack_port = 0;} + void going_away() { _jack_port = 0; Ticker::going_away(); } /// slot for the signal session::MIDIClock_PortChanged void update_midi_clock_port(); -- 2.30.2