We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 72ababf commit 5cf53e6Copy full SHA for 5cf53e6
cores/stm32l4/FS.cpp
@@ -140,6 +140,11 @@ Dir::Dir(const char* path) {
140
}
141
142
143
+Dir::Dir() {
144
+ _path[0] = '\0';
145
+ _find.find_clsno = 0x0fffffff;
146
+};
147
+
148
File Dir::openFile(const char* mode) {
149
char filename[F_MAXPATH];
150
cores/stm32l4/FS.h
@@ -66,7 +66,7 @@ class File : public Stream
66
class Dir {
67
public:
68
Dir(const char *path);
69
- ~Dir();
+ Dir();
70
71
File openFile(const char* mode);
72
String fileName();
0 commit comments