mirror of
https://gitlab.isc.org/isc-projects/bind9
synced 2025-08-30 22:15:20 +00:00
Merge branch '4068-coverity-uv_async_send' into 'main'
Check the return value from uv_async_send() Closes #4068 See merge request isc-projects/bind9!7926
This commit is contained in:
@@ -480,7 +480,8 @@ isc_loopmgr_pause(isc_loopmgr_t *loopmgr) {
|
||||
continue;
|
||||
}
|
||||
|
||||
uv_async_send(&loop->pause_trigger);
|
||||
int r = uv_async_send(&loop->pause_trigger);
|
||||
UV_RUNTIME_CHECK(uv_async_send, r);
|
||||
}
|
||||
|
||||
RUNTIME_CHECK(atomic_compare_exchange_strong(&loopmgr->paused,
|
||||
|
Reference in New Issue
Block a user