Fix of recent GCode / GCodeProcessor refactoring: Don't close a FILE
twice.
This commit is contained in:
parent
152e236dda
commit
0da0a7b2a0
2 changed files with 23 additions and 4 deletions
|
@ -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)
|
||||
{
|
||||
|
|
|
@ -350,7 +350,12 @@ void GCodeProcessor::TimeProcessor::reset()
|
|||
struct FilePtr {
|
||||
FilePtr(FILE *f) : f(f) {}
|
||||
~FilePtr() { this->close(); }
|
||||
void close() { if (f) ::fclose(f); }
|
||||
void close() {
|
||||
if (this->f) {
|
||||
::fclose(this->f);
|
||||
this->f = nullptr;
|
||||
}
|
||||
}
|
||||
FILE* f = nullptr;
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue