From 45e9491ecac49e199016cd0c642c66dd7f246cc6 Mon Sep 17 00:00:00 2001 From: Randy Heit Date: Fri, 8 Feb 2013 01:35:18 +0000 Subject: [PATCH] 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) --- dumb/src/it/itread.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dumb/src/it/itread.c b/dumb/src/it/itread.c index cb67aaa67..8e6b933e4 100644 --- a/dumb/src/it/itread.c +++ b/dumb/src/it/itread.c @@ -1484,7 +1484,7 @@ static sigdata_t *it_load_sigdata(DUMBFILE *f) if ( !dumbfile_error( f ) && n < 10 ) { 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 ); switch (mptx_id)