ensure we copy current frame to prevent a segfault crash

This commit is contained in:
Josh Hawkins 2025-02-14 18:25:27 -06:00
parent 0b65137831
commit cbac0dd63a

View File

@ -406,7 +406,7 @@ class CameraState:
if current_frame is not None: if current_frame is not None:
self.current_frame_time = frame_time self.current_frame_time = frame_time
self._current_frame = current_frame self._current_frame = np.copy(current_frame)
if self.previous_frame_id is not None: if self.previous_frame_id is not None:
self.frame_manager.close(self.previous_frame_id) self.frame_manager.close(self.previous_frame_id)