| 4258 | } |
| 4259 | |
| 4260 | void YBlob::close(CheckStatusWrapper* status) |
| 4261 | { |
| 4262 | try |
| 4263 | { |
| 4264 | YEntry<YBlob> entry(status, this, CHECK_WARN_ZERO_HANDLE); |
| 4265 | |
| 4266 | done(status, entry, this, [&]{entry.next()->close(status);}, [&]{entry.next()->deprecatedClose(status);}); |
| 4267 | } |
| 4268 | catch (const Exception& e) |
| 4269 | { |
| 4270 | e.stuffException(status); |
| 4271 | } |
| 4272 | } |
| 4273 | |
| 4274 | void YBlob::deprecatedClose(CheckStatusWrapper* status) |
| 4275 | { |
no test coverage detected