Skip to content

Commit 11b6799

Browse files
authoredJul 18, 2024
Merge pull request #827 from attermann/lfs_leak
Fix memory leak on failure to open
2 parents 8c8bcf2 + 236e434 commit 11b6799

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed
 

‎libraries/Adafruit_LittleFS/src/Adafruit_LittleFS_File.cpp

+6
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,9 @@ bool File::_open_file (char const *filepath, uint8_t mode)
6666
{
6767
// failed to open
6868
PRINT_LFS_ERR(rc);
69+
// free memory
70+
rtos_free(_file);
71+
_file = NULL;
6972
return false;
7073
}
7174

@@ -89,6 +92,9 @@ bool File::_open_dir (char const *filepath)
8992
{
9093
// failed to open
9194
PRINT_LFS_ERR(rc);
95+
// free memory
96+
rtos_free(_dir);
97+
_dir = NULL;
9298
return false;
9399
}
94100

0 commit comments

Comments
 (0)