@GreyCat Is there a reason m_io->close() is commented out here?
|
void kaitai::kstream::close() { |
|
// m_io->close(); |
|
} |
This "implementation" comes from the initial commit in 2016 when the C++/STL runtime was started (8d533f3:kaitai/kaitaistream.cpp:8), so perhaps it was disabled just for debugging reasons during the initial testing, but I don't see any reason why kstream::close() should be a no-op - makes no sense to me.
@GreyCat Is there a reason
m_io->close()is commented out here?kaitai_struct_cpp_stl_runtime/kaitai/kaitaistream.cpp
Lines 44 to 46 in cb09b3a
This "implementation" comes from the initial commit in 2016 when the C++/STL runtime was started (
8d533f3:kaitai/kaitaistream.cpp:8), so perhaps it was disabled just for debugging reasons during the initial testing, but I don't see any reason whykstream::close()should be a no-op - makes no sense to me.