fix camerad not exiting cleanly (#2768)

Co-authored-by: Comma Device <device@comma.ai>
pull/16765/head
Adeeb Shihadeh 2020-12-12 13:55:24 -08:00 committed by GitHub
parent 6a151dcd9c
commit a96857f1aa
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 1 deletions

View File

@ -131,7 +131,9 @@ void visionbuf_sync(const VisionBuf* buf, int dir) {
}
void visionbuf_free(const VisionBuf* buf) {
CL_CHECK(clReleaseMemObject(buf->buf_cl));
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 = {