Github user zwoop commented on the issue:
https://github.com/apache/trafficserver/pull/1457
This introduced a new Coverity issues:
```
*** CID 1371483: Error handling issues (CHECKED_RETURN)
/lib/ts/signals.cc: 173 in signal_format_siginfo(int, siginfo_t *, const
char *)()
167 #if HAVE_STRSIGNAL
168 snprintf(buf, sizeof(buf), "%s: received signal %d (%s)\n", msg,
signo, strsignal(signo));
169 #else
170 snprintf(buf, sizeof(buf), "%s: received signal %d\n", msg,
signo);
171 #endif
172
CID 1371483: Error handling issues (CHECKED_RETURN)
Calling "write" without checking return value (as is done elsewhere 29
out of 33 times).
173 write(STDERR_FILENO, buf, strlen(buf));
174 }
175
176 void
177 signal_crash_handler(int signo, siginfo_t *, void *)
178 {
```
Assuming we don't revert this change, we need to fix this.
---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---