Changeset 426


Ignore:
Timestamp:
02/18/09 23:09:50 (15 years ago)
Author:
r2d
Message:

copied too fast :) correction for max_band upper bound (thanks DEATH for all your checks)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • libmpc/trunk/libmpcdec/streaminfo.c

    r425 r426  
    9999static mpc_status check_streaminfo(mpc_streaminfo * si)
    100100{
    101         if (si->max_band == 0 || si->max_band > 32
     101        if (si->max_band == 0 || si->max_band >= 32
    102102            || si->channels > 2)
    103103                return MPC_STATUS_FILE;
Note: See TracChangeset for help on using the changeset viewer.