ZXing.Delphi icon indicating copy to clipboard operation
ZXing.Delphi copied to clipboard

Memory leak in TOneDReader.decode when hints contains ZXing.DecodeHintType.TRY_HARDER

Open JedrzejczykRobert opened this issue 1 year ago • 0 comments

file: ZXing.OneD.OneDReader.pas line: 185

current:

  Result := doDecode(image, hints);
  if (Result = nil) then
  begin
    Exit;
  end;

should be:

  Result := doDecode(image, hints);
  if (Result <> nil) then
  begin
    Exit;
  end;

JedrzejczykRobert avatar Jun 08 '24 07:06 JedrzejczykRobert