| 208 | } |
| 209 | |
| 210 | ~S3Config() |
| 211 | { |
| 212 | _secret_len = _keyid_len = _token_len = 0; |
| 213 | TSfree(_secret); |
| 214 | TSfree(_keyid); |
| 215 | TSfree(_token); |
| 216 | TSfree(_conf_fname); |
| 217 | if (_conf_rld_act) { |
| 218 | TSActionCancel(_conf_rld_act); |
| 219 | } |
| 220 | if (_conf_rld) { |
| 221 | TSContDestroy(_conf_rld); |
| 222 | } |
| 223 | if (_cont) { |
| 224 | TSContDestroy(_cont); |
| 225 | } |
| 226 | } |
| 227 | |
| 228 | // This handles the hoops needed to safely delete the special |
| 229 | // plugin level instance of this class. |
nothing calls this directly
no test coverage detected