Spelt / ZXing.Delphi

ZXing Barcode Scanning object Pascal Library for Delphi VCL and Delphi Firemonkey
Apache License 2.0
471 stars 206 forks source link

TUPCEANExtension5Support.extensionChecksum - error #147

Closed JedrzejczykRobert closed 1 year ago

JedrzejczykRobert commented 1 year ago

file: ZXing.OneD.UPCEANExtension5Support line: 204, 211

current:

Inc(sum, StrToIntDef(s[i], 0));

should be:

Inc(sum, StrToIntDef(s.Chars[i], 0));