| 119 | } |
| 120 | |
| 121 | ~Data() |
| 122 | { |
| 123 | if (nullptr != m_urlbuf) { |
| 124 | if (nullptr != m_urlloc) { |
| 125 | TSHandleMLocRelease(m_urlbuf, TS_NULL_MLOC, m_urlloc); |
| 126 | m_urlloc = nullptr; |
| 127 | } |
| 128 | TSMBufferDestroy(m_urlbuf); |
| 129 | m_urlbuf = nullptr; |
| 130 | } |
| 131 | if (nullptr != m_http_parser) { |
| 132 | TSHttpParserDestroy(m_http_parser); |
| 133 | m_http_parser = nullptr; |
| 134 | } |
| 135 | } |
| 136 | }; |
no test coverage detected