Files
bind9/lib/isc/unix
Ondřej Surý 6afa99362a Remove duplicate INSIST checks for isc_refcount API
This commits removes superfluous checks when using the isc_refcount API.

Examples of superfluous checks:

1. The isc_refcount_decrement function ensures there was not underflow,
   so this check is superfluous:

    INSIST(isc_refcount_decrement(&r) > 0);

2 .The isc_refcount_destroy() includes check whether the counter
   is zero, therefore this is superfluous:

    INSIST(isc_refcount_decrement(&r) == 1 && isc_refcount_destroy(&r));
2020-01-14 13:12:13 +01:00
..
2019-11-10 20:14:17 +00:00
2019-11-10 20:14:17 +00:00
2019-11-06 15:32:04 +01:00
2020-01-13 22:00:20 +01:00
2019-11-28 12:36:55 +01:00