fix camerad not exiting cleanly (#2768)

Co-authored-by: Comma Device <device@comma.ai>
old-commit-hash: a96857f1aa
commatwo_master
Adeeb Shihadeh 4 years ago committed by GitHub
parent 3e6abdd8bd
commit 649fe5b34a
  1. 2
      selfdrive/common/visionbuf_ion.c

@ -131,7 +131,9 @@ void visionbuf_sync(const VisionBuf* buf, int dir) {
}
void visionbuf_free(const VisionBuf* buf) {
if (buf->buf_cl) {
CL_CHECK(clReleaseMemObject(buf->buf_cl));
}
munmap(buf->addr, buf->mmap_len);
close(buf->fd);
struct ion_handle_data handle_data = {

Loading…
Cancel
Save