Fix of recent GCode / GCodeProcessor refactoring: Don't close a FILE

twice.
This commit is contained in:
Vojtech Bubnik
2021-09-07 17:58:06 +02:00
parent cdd0d90f99
commit 09a34639f7
2 changed files with 23 additions and 4 deletions

View File

@@ -2642,9 +2642,23 @@ std::string GCode::extrude_support(const ExtrusionEntityCollection &support_fill
return gcode;
}
bool GCode::GCodeOutputStream::is_error() const { return ::ferror(f); }
void GCode::GCodeOutputStream::flush() { ::fflush(f); }
void GCode::GCodeOutputStream::close() { if (f) ::fclose(f); }
bool GCode::GCodeOutputStream::is_error() const
{
return ::ferror(this->f);
}
void GCode::GCodeOutputStream::flush()
{
::fflush(this->f);
}
void GCode::GCodeOutputStream::close()
{
if (this->f) {
::fclose(this->f);
this->f = nullptr;
}
}
void GCode::GCodeOutputStream::write(const char *what)
{