We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
After apply #142
file: ZXing.OneD.UPCEANExtension2Support line: 110
current:
if (extensionData <> nil) then extensionResult.putAllMetadata(extensionData);
should be:
if (extensionData <> nil) then begin extensionResult.putAllMetadata(extensionData); FreeAndNil(extensionData); end;
The text was updated successfully, but these errors were encountered:
Memory leak in UPCEANExtension2Support.decodeRow #146
fdc3918
No branches or pull requests
After apply #142
file: ZXing.OneD.UPCEANExtension2Support
line: 110
current:
should be:
The text was updated successfully, but these errors were encountered: