| 202 | } |
| 203 | |
| 204 | static bool live_descendent(int *indexes, void **objects, int step, |
| 205 | int objidx) { |
| 206 | for (int i = objidx + 1; i < 4; i++) { |
| 207 | if (!decreffed(indexes, objects, step, objects[i])) { |
| 208 | return true; |
| 209 | } |
| 210 | } |
| 211 | |
| 212 | return false; |
| 213 | } |
| 214 | |
| 215 | static void assert_refcount(void *object, int expected) { |
| 216 | int rc = pn_refcount(object); |
no test coverage detected