| 1049 | } |
| 1050 | |
| 1051 | void FlushChatCommandQueue() { |
| 1052 | Chat_command *tmp_cmd; |
| 1053 | Currcommand = Firstcommand; |
| 1054 | |
| 1055 | while (Currcommand) { |
| 1056 | tmp_cmd = Currcommand->next; |
| 1057 | DLLmem_free(Currcommand); |
| 1058 | Currcommand = tmp_cmd; |
| 1059 | } |
| 1060 | Firstcommand = nullptr; |
| 1061 | } |
| 1062 | |
| 1063 | void FlushChannelList() { |
| 1064 | Chat_channel *tmp_chan; |
no outgoing calls
no test coverage detected