Free the result of getKeysFromCommand. */
| 1658 | |
| 1659 | /* Free the result of getKeysFromCommand. */ |
| 1660 | void getKeysFreeResult(getKeysResult *result) { |
| 1661 | if (result && result->keys != result->keysbuf) |
| 1662 | zfree(result->keys); |
| 1663 | } |
| 1664 | |
| 1665 | /* Helper function to extract keys from following commands: |
| 1666 | * COMMAND [destkey] <num-keys> <key> [...] <key> [...] ... <options> |
no test coverage detected