| 148 | */ |
| 149 | |
| 150 | void my_hash_free(HASH *hash) |
| 151 | { |
| 152 | DBUG_ENTER("my_hash_free"); |
| 153 | DBUG_PRINT("enter",("hash: 0x%lx", (long) hash)); |
| 154 | |
| 155 | my_hash_free_elements(hash); |
| 156 | hash->free= 0; |
| 157 | delete_dynamic(&hash->array); |
| 158 | hash->blength= 0; |
| 159 | DBUG_VOID_RETURN; |
| 160 | } |
| 161 | |
| 162 | |
| 163 | /* |
no test coverage detected