| 32 | } |
| 33 | |
| 34 | FTPClientWrapperSSL::~FTPClientWrapperSSL() |
| 35 | { |
| 36 | if (m_ftpListParams) { |
| 37 | SU::free(m_ftpListParams); |
| 38 | m_ftpListParams = NULL; |
| 39 | } |
| 40 | } |
| 41 | |
| 42 | FTPClientWrapper* FTPClientWrapperSSL::Clone() { |
| 43 | FTPClientWrapperSSL* wrapper = new FTPClientWrapperSSL(m_hostname, m_port, m_username, m_password); |
nothing calls this directly
no outgoing calls
no test coverage detected