13
0

Fix crash on export.

git-svn-id: svn://localhost/ardour2/branches/3.0@7038 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Carl Hetherington 2010-05-02 13:14:06 +00:00
parent 0d0e32d8b3
commit b30fa60ad9

View File

@ -28,6 +28,7 @@
#include "ardour/export_status.h"
#include "ardour/session.h"
#include "ardour/track.h"
#include "ardour/process_thread.h"
#include "i18n.h"
@ -179,7 +180,9 @@ Session::process_export (nframes_t nframes)
int
Session::process_export_fw (nframes_t nframes)
{
_engine.main_thread()->get_buffers ();
process_export (nframes);
_engine.main_thread()->drop_buffers ();
return 0;
}