| 122 | } |
| 123 | |
| 124 | static void release_object_request(struct object_request *obj_req) |
| 125 | { |
| 126 | if (obj_req->req !=NULL && obj_req->req->localfile != -1) |
| 127 | error("fd leakage in release: %d", obj_req->req->localfile); |
| 128 | |
| 129 | list_del(&obj_req->node); |
| 130 | free(obj_req); |
| 131 | } |
| 132 | |
| 133 | static int fill_active_slot(void *data UNUSED) |
| 134 | { |
no test coverage detected