Fix for an unhandled exception. Campbell: please include in 2.60a.

This commit is contained in:
Joerg Mueller 2011-10-22 18:08:26 +00:00
parent 29f279e43d
commit 726fa61817

@ -107,8 +107,14 @@ void AUD_SequencerReader::read(int& length, bool& eos, sample_t* buffer)
if(result < 0)
{
handle = new AUD_SequencerHandle(entry, m_device);
handles.push_front(handle);
try
{
handle = new AUD_SequencerHandle(entry, m_device);
handles.push_front(handle);
}
catch(AUD_Exception&)
{
}
eit++;
}
else if(result == 0)