You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Thanks Robert,I will check your fixes out in a couple of weeks. Op 1 jul. 2023 om 18:16 heeft Robert Jędrzejczyk ***@***.***> het volgende geschreven:
After #145 and like TUPCEANExtension2Support.decodeRow:
file: ZXing.OneD.UPCEANExtension5Support
line: 123
current:
if (extensionData <> nil)
then
extensionResult.putAllMetadata(extensionData);
should be:
if (extensionData <> nil) then
begin
extensionResult.putAllMetadata(extensionData);
FreeAndNil(extensionData);
end;
—Reply to this email directly, view it on GitHub, or unsubscribe.You are receiving this because you are subscribed to this thread.Message ID: ***@***.***>
JedrzejczykRobert
changed the title
Memory lean in TUPCEANExtension5Support.decodeRow
Memory leak in TUPCEANExtension5Support.decodeRow
Jul 2, 2023
After apply #145 and like TUPCEANExtension2Support.decodeRow:
file: ZXing.OneD.UPCEANExtension5Support
line: 123
current:
should be:
The text was updated successfully, but these errors were encountered: