| 1194 | | Â Â Â /* |
|---|
| 1195 | | Â Â Â Â Â If the loop was terminated because of out-of-memory, it is not |
|---|
| 1196 | | Â Â Â Â Â reliable to add END\r\n to the buffer, because it might not end |
|---|
| 1197 | | Â Â Â Â Â in \r\n. Â So we send SERVER_ERROR instead. |
|---|
| 1198 | | Â Â Â */ |
|---|
| 1199 | | Â Â Â if (key_token->value != NULL || add_iov(c, "END\r\n", 5) != 0 |
|---|
| 1200 | | Â Â Â Â Â Â Â || (c->udp && build_udp_headers(c) != 0)) { |
|---|
| | 1194 | /* |
|---|
| | 1195 | If the loop was terminated because of out-of-memory, it is not |
|---|
| | 1196 | reliable to add END\r\n to the buffer, because it might not end |
|---|
| | 1197 | in \r\n. So we send SERVER_ERROR instead. |
|---|
| | 1198 | */ |
|---|
| | 1199 | if (key_token->value != NULL || add_iov(c, "END\r\n", 5) != 0 |
|---|
| | 1200 | || (c->udp && build_udp_headers(c) != 0)) { |
|---|