You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Checks could be added there to make sure these pointers are valid, but that's probably not the right solution. Furthermore, when solving it that way below warning is shown at termination:
Warning: class_loader.ClassLoader: SEVERE WARNING!!!
Attempting to unload /opt/ros/noetic/lib//librosbag_default_encryption_plugins.so
while objects created by this library still exist in the heap!
You should delete your objects before destroying the ClassLoader. The library will NOT be unloaded.
at line 119 in /tmp/binarydeb/ros-noetic-class-loader-0.5.0/src/class_loader.cpp
When searching for this the only thing I could find is this open question.
The text was updated successfully, but these errors were encountered:
rosbag::Bag
has a move constructor, which fails for below example:It is the
file_
swap that fails, because file_.read_stream_ and file_.write_stream_ are null pointers.Checks could be added there to make sure these pointers are valid, but that's probably not the right solution. Furthermore, when solving it that way below warning is shown at termination:
When searching for this the only thing I could find is this open question.
The text was updated successfully, but these errors were encountered: