I knew there was a reason it was commented out. It makes valgrind happy but causes the program to segfault on exit.

This commit is contained in:
Paul Dino Jones 2025-01-16 17:00:15 -05:00
parent 7f371ebf15
commit 4df9787c21
1 changed files with 1 additions and 1 deletions

View File

@ -329,7 +329,7 @@ void shmdatamapcallback(uv_timer_t* handle)
slogt("attempting device timer stop and release");
slogt("timer active status %i", uv_is_active((uv_handle_t*) dt));
uv_timer_stop(dt);
uv_close((uv_handle_t*) dt, on_timer_close_complete);
//uv_close((uv_handle_t*) dt, on_timer_close_complete);
}
}
free(f->device_batons);