maskit opened a new issue, #10221:
URL: https://github.com/apache/trafficserver/issues/10221
```
95bool
96Config::setLastConfigChange()
97{
98 struct stat s;
99 time_t oldLastmtime = m_lastmtime;
100
101 memset(&s, 0, sizeof(s));
CID 1508995 (#1 of 1): Unchecked return value from library (CHECKED_RETURN)
1. check_return: Calling stat(this->m_filename.c_str(), &s) without checking
return value. This library function may fail and return an error code. [Note:
The source code implementation of the function has been overridden by a builtin
model.]
102 stat(m_filename.c_str(), &s);
103
104 m_lastmtime = s.st_mtime;
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]