| 222 | }; |
| 223 | |
| 224 | int Blob::release() |
| 225 | { |
| 226 | if (--refCounter != 0) |
| 227 | { |
| 228 | return 1; |
| 229 | } |
| 230 | |
| 231 | if (blob) |
| 232 | { |
| 233 | LocalStatus ls; |
| 234 | CheckStatusWrapper status(&ls); |
| 235 | freeClientData(&status, true); |
| 236 | } |
| 237 | delete this; |
| 238 | |
| 239 | return 0; |
| 240 | } |
| 241 | |
| 242 | class Transaction final : public RefCntIface<ITransactionImpl<Transaction, CheckStatusWrapper> > |
| 243 | { |
no outgoing calls
no test coverage detected