maskit opened a new issue, #10420:
URL: https://github.com/apache/trafficserver/issues/10420

   access_control/common.cc
   ```
   40int
   41string2int(const StringView &s)
   42{
   43  time_t t = 0;
   44  try {
   45    t = static_cast<time_t>(std::stoi(String(s)));
   46  } catch (...) {
   47    /* Failed to convert return impossible value */
   48    return 0;
   49  }
        
   CID 1508901 (#1 of 1): Use of 32-bit time_t (Y2K38_SAFETY)
   1. store_truncates_time_t: A time_t value is stored in an integer with too 
few bits to accommodate it. The expression t is cast to int.
   50  return t;
   51}
   ```


-- 
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]

Reply via email to