| 50 | } |
| 51 | |
| 52 | void |
| 53 | cleanupTransaction(Transaction &transaction, TSHttpTxn ats_txn_handle) |
| 54 | { |
| 55 | delete &transaction; |
| 56 | // reset the txn arg to prevent use-after-free |
| 57 | TSUserArgSet(ats_txn_handle, TRANSACTION_STORAGE_INDEX, nullptr); |
| 58 | } |
| 59 | |
| 60 | void |
| 61 | cleanupTransactionPlugin(Plugin *plugin, TSHttpTxn ats_txn_handle) |
no test coverage detected