Client state initialization for MULTI/EXEC */
| 34 | |
| 35 | /* Client state initialization for MULTI/EXEC */ |
| 36 | void initClientMultiState(client *c) { |
| 37 | c->mstate.commands = NULL; |
| 38 | c->mstate.count = 0; |
| 39 | c->mstate.cmd_flags = 0; |
| 40 | c->mstate.cmd_inv_flags = 0; |
| 41 | } |
| 42 | |
| 43 | /* Release all the resources associated with MULTI/EXEC state */ |
| 44 | void freeClientMultiState(client *c) { |
no outgoing calls
no test coverage detected