Update DUMB to revision ff84ff32fe1fc82926020feedf894c4fb5c37ccd (This now brings us up to date with the latest version on github, except I left

out the any file reader, SSE it filter, and the FIR resampler.)

   - Fixed serious error with MPT extension reading



SVN r4117 (trunk)
This commit is contained in:
Randy Heit 2013-02-08 01:35:18 +00:00
parent 3c50b1c14b
commit 45e9491eca
1 changed files with 1 additions and 1 deletions

View File

@ -1484,7 +1484,7 @@ static sigdata_t *it_load_sigdata(DUMBFILE *f)
if ( !dumbfile_error( f ) && n < 10 ) if ( !dumbfile_error( f ) && n < 10 )
{ {
unsigned int mptx_id = dumbfile_igetl( f ); unsigned int mptx_id = dumbfile_igetl( f );
while ( mptx_id != DUMB_ID('M','P','T','S') ) while ( !dumbfile_error( f ) && mptx_id != DUMB_ID('M','P','T','S') )
{ {
unsigned int size = dumbfile_igetw( f ); unsigned int size = dumbfile_igetw( f );
switch (mptx_id) switch (mptx_id)