Browse Source

Merge pull request #2099 from aria2/fix-overflow

Fix overflow
Tatsuhiro Tsujikawa 2 years ago
parent
commit
80534d869f
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/cookie_helper.cc

+ 1 - 1
src/cookie_helper.cc

@@ -302,7 +302,7 @@ std::unique_ptr<Cookie> parse(const std::string& cookieStr,
           int64_t n = creationTime;
           int64_t n = creationTime;
 
 
           if (n > std::numeric_limits<int64_t>::max() - delta) {
           if (n > std::numeric_limits<int64_t>::max() - delta) {
-            maxAge = std::numeric_limits<int64_t>::max();
+            maxAge = std::numeric_limits<time_t>::max();
           } else {
           } else {
             n += delta;
             n += delta;