Fix crash on reading meta event.

git-svn-id: svn://localhost/ardour2/branches/3.0@4586 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
David Robillard
2009-02-15 20:50:20 +00:00
parent 59972b5550
commit 3cfb9126af
2 changed files with 3 additions and 3 deletions

View File

@@ -358,7 +358,7 @@ Sequence<Time>::const_iterator::operator++()
#ifdef DEBUG_SEQUENCE
cerr << "Iterator = SysEx" << endl;
#endif
*_event =*(*_sysex_iter);
*_event = *(*_sysex_iter);
++_sysex_iter;
} else {
#ifdef DEBUG_SEQUENCE