Fixed C code fitVersionToData() to check version upper bound correctly on every iteration.

pull/11/head
Project Nayuki 8 years ago
parent 7580ee38e0
commit 55c5510057

@ -254,13 +254,12 @@ static int fitVersionToData(int minVersion, int maxVersion, enum qrcodegen_Ecc e
if (version <= 9) lengthBits = ver1To9LenBits; if (version <= 9) lengthBits = ver1To9LenBits;
else if (version <= 26) lengthBits = ver10To26LenBits; else if (version <= 26) lengthBits = ver10To26LenBits;
else lengthBits = ver27To40LenBits; else lengthBits = ver27To40LenBits;
if (dataLen >= (1L << lengthBits)) if (dataLen < (1L << lengthBits)) {
continue; int dataCapacityBits = getNumDataCodewords(version, ecl) * 8; // Number of data bits available
int header = 4 + lengthBits;
int dataCapacityBits = getNumDataCodewords(version, ecl) * 8; // Number of data bits available if (dataBitLen <= INT_MAX - header && header + dataBitLen <= dataCapacityBits)
int header = 4 + lengthBits; return version; // This version number is found to be suitable
if (dataBitLen <= INT_MAX - header && header + dataBitLen <= dataCapacityBits) }
return version; // This version number is found to be suitable
if (version >= maxVersion) // All versions in the range could not fit the given data if (version >= maxVersion) // All versions in the range could not fit the given data
return 0; return 0;
} }

Loading…
Cancel
Save