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

TDataMatrixReader.decode bug when use TDecodeHintType.PURE_BARCODE #152

Closed JedrzejczykRobert closed 1 year ago

JedrzejczykRobert commented 1 year ago

file: ZXing.Datamatrix.DataMatrixReader line: 126

current:

bits.Free;

shoul be:

FreeAndNil(bits);

or remove lines: 116,170,171

Bits:=nil;

    if Assigned(bits) then
      FreeAndNil(bits);