| 52 | } |
| 53 | |
| 54 | CodedInputDataCrypt::~CodedInputDataCrypt() { |
| 55 | if (m_decryptBuffer) { |
| 56 | free(m_decryptBuffer); |
| 57 | } |
| 58 | } |
| 59 | |
| 60 | void CodedInputDataCrypt::seek(size_t addedSize) { |
| 61 | m_position += addedSize; |
nothing calls this directly
no outgoing calls
no test coverage detected