| 4143 | } |
| 4144 | |
| 4145 | void YRequest::free(CheckStatusWrapper* status) |
| 4146 | { |
| 4147 | try |
| 4148 | { |
| 4149 | YEntry<YRequest> entry(status, this, CHECK_WARN_ZERO_HANDLE); |
| 4150 | |
| 4151 | done(status, entry, this, [&]{entry.next()->free(status);}, [&]{entry.next()->deprecatedFree(status);}); |
| 4152 | } |
| 4153 | catch (const Exception& e) |
| 4154 | { |
| 4155 | e.stuffException(status); |
| 4156 | } |
| 4157 | } |
| 4158 | |
| 4159 | void YRequest::deprecatedFree(CheckStatusWrapper* status) |
| 4160 | { |
no test coverage detected