| 979 | } |
| 980 | |
| 981 | void _serverAssertWithInfo(const client *c, const robj *o, const char *estr, const char *file, int line) { |
| 982 | if (c) _serverAssertPrintClientInfo(c); |
| 983 | if (o) _serverAssertPrintObject(o); |
| 984 | _serverAssert(estr,file,line); |
| 985 | } |
| 986 | |
| 987 | void _serverPanic(const char *file, int line, const char *msg, ...) { |
| 988 | va_list ap; |
nothing calls this directly
no test coverage detected