Skip to content

Commit 5085fb6

Browse files
committed
Fixed memory leak thanks to foster066 'free(is_fmt_unsigned)'
1 parent 2c0f663 commit 5085fb6

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

CSV_Parser.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -106,6 +106,7 @@ CSV_Parser::~CSV_Parser() {
106106
free(values);
107107
free(fmt);
108108
free(leftover);
109+
free(is_fmt_unsigned);
109110
}
110111

111112
#ifndef CSV_PARSER_DONT_IMPORT_SD

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2020 Michal Borowski
3+
Copyright (c) 2022 Michal Borowski
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

library.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name=CSV Parser
2-
version=0.2.1
2+
version=0.2.2
33
author=Michal Borowski <[email protected]>
44
maintainer=Michal Borowski <[email protected]>
55
sentence=CSV Parser for Arduino.

0 commit comments

Comments
 (0)