| 1086 | } |
| 1087 | |
| 1088 | void _serverAssertWithInfo(const client *c, robj_roptr o, const char *estr, const char *file, int line) { |
| 1089 | if (c) _serverAssertPrintClientInfo(c); |
| 1090 | if (o) _serverAssertPrintObject(o); |
| 1091 | _serverAssert(estr,file,line); |
| 1092 | } |
| 1093 | |
| 1094 | void _serverPanic(const char *file, int line, const char *msg, ...) { |
| 1095 | g_fInCrash = true; |
nothing calls this directly
no test coverage detected