Explorar el Código

Don't close diveDir in fileExists (#20035)

Sergey1560 hace 4 años
padre
commit
f924344cc5
No account linked to committer's email address
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1
    1
      Marlin/src/sd/cardreader.cpp

+ 1
- 1
Marlin/src/sd/cardreader.cpp Ver fichero

@@ -637,7 +637,7 @@ bool CardReader::fileExists(const char * const path) {
637 637
   if (fname) {
638 638
     diveDir->rewind();
639 639
     selectByName(*diveDir, fname);
640
-    diveDir->close();
640
+    //diveDir->close();
641 641
   }
642 642
   return !!fname;
643 643
 }

Loading…
Cancelar
Guardar