Release data obtained with getMemoryOverheadData(). */
| 971 | |
| 972 | /* Release data obtained with getMemoryOverheadData(). */ |
| 973 | void freeMemoryOverheadData(struct redisMemOverhead *mh) { |
| 974 | zfree(mh->db); |
| 975 | zfree(mh); |
| 976 | } |
| 977 | |
| 978 | /* Return a struct redisMemOverhead filled with memory overhead |
| 979 | * information used for the MEMORY OVERHEAD and INFO command. The returned |
no test coverage detected