Release data obtained with getMemoryOverheadData(). */
| 1055 | |
| 1056 | /* Release data obtained with getMemoryOverheadData(). */ |
| 1057 | void freeMemoryOverheadData(struct redisMemOverhead *mh) { |
| 1058 | zfree(mh->db); |
| 1059 | zfree(mh); |
| 1060 | } |
| 1061 | |
| 1062 | /* Return a struct redisMemOverhead filled with memory overhead |
| 1063 | * information used for the MEMORY OVERHEAD and INFO command. The returned |
no test coverage detected