mirror of
https://github.com/isc-projects/bind9.git
synced 2026-06-04 17:32:04 -04: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:
commit
b4326572dd
1 changed files with 2 additions and 1 deletions
|
|
@ -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,
|
||||
|
|
|
|||
Loading…
Reference in a new issue