See addReplyErrorLength for expectations from the input string. */
| 614 | |
| 615 | /* See addReplyErrorLength for expectations from the input string. */ |
| 616 | void addReplyError(client *c, const char *err) { |
| 617 | addReplyErrorLength(c,err,strlen(err)); |
| 618 | afterErrorReply(c,err,strlen(err)); |
| 619 | } |
| 620 | |
| 621 | /* See addReplyErrorLength for expectations from the input string. */ |
| 622 | /* As a side effect the SDS string is freed. */ |
no test coverage detected