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
src/libslic3r
|
@ -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)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue