See addReplyErrorLength for expectations from the input string. */
| 483 | |
| 484 | /* See addReplyErrorLength for expectations from the input string. */ |
| 485 | void addReplyError(client *c, const char *err) { |
| 486 | addReplyErrorLength(c,err,strlen(err)); |
| 487 | afterErrorReply(c,err,strlen(err)); |
| 488 | } |
| 489 | |
| 490 | /* See addReplyErrorLength for expectations from the input string. */ |
| 491 | /* As a side effect the SDS string is freed. */ |
no test coverage detected