delete the hashset except the masterhash (we dont keep aich hashsets in memory to save resources)
| 848 | |
| 849 | // delete the hashset except the masterhash (we dont keep aich hashsets in memory to save resources) |
| 850 | void CAICHHashSet::FreeHashSet() |
| 851 | { |
| 852 | if (m_pHashTree.m_pLeftTree) { |
| 853 | delete m_pHashTree.m_pLeftTree; |
| 854 | m_pHashTree.m_pLeftTree = NULL; |
| 855 | } |
| 856 | if (m_pHashTree.m_pRightTree) { |
| 857 | delete m_pHashTree.m_pRightTree; |
| 858 | m_pHashTree.m_pRightTree = NULL; |
| 859 | } |
| 860 | } |
| 861 | |
| 862 | void CAICHHashSet::SetMasterHash(const CAICHHash& Hash, EAICHStatus eNewStatus) |
| 863 | { |
no outgoing calls
no test coverage detected