fix a bug when reading 24 bit soundfonts

This commit is contained in:
derselbst 2017-12-09 20:03:37 +01:00
parent 29d194ed6d
commit 97a4e1aa1c

View file

@ -2432,7 +2432,7 @@ process_sdta (unsigned int size, SFData * sf, void * fd, const fluid_file_callba
sdtachunk_size = chunk.size;
sf->samplesize = chunk.size;
FSKIP (chunk.size, fd, fcbs);
FSKIP (size, fd, fcbs);
return (OK);
}