1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-06-16 11:21:18 +03:00

Merge pull request #1383 from bjelojac/patch-1

Fix for #814, Memory Leak
This commit is contained in:
Federico Fissore
2013-10-09 08:42:12 -07:00

View File

@ -44,6 +44,7 @@ File::File(void) {
}
File::~File(void) {
close();
// Serial.print("Deleted file object");
}