fix more malloc complaints

This commit is contained in:
Paul Dino Jones 2025-01-16 16:57:34 -05:00
parent 6145efd2a9
commit 7f371ebf15
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("attempting device timer stop and release");
slogt("timer active status %i", uv_is_active((uv_handle_t*) dt)); slogt("timer active status %i", uv_is_active((uv_handle_t*) dt));
uv_timer_stop(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); free(f->device_batons);