chiark / gitweb /
time-util: add overflow checking to monotonic timestamp specifications
authorLennart Poettering <lennart@poettering.net>
Thu, 2 Feb 2017 17:35:00 +0000 (18:35 +0100)
committerSven Eden <yamakuzure@gmx.net>
Mon, 17 Jul 2017 15:58:36 +0000 (17:58 +0200)
src/basic/time-util.c

index 265f5995a2e1b21e145c71a424f8ddb2a284a9c0..6a76b655120d9bd73672e1ba095176dcec4553b0 100644 (file)
@@ -857,6 +857,8 @@ from_tm:
                 return -EINVAL;
 
 finish:
+        if (ret + plus < ret) /* overflow? */
+                return -EINVAL;
         ret += plus;
         if (ret > USEC_TIMESTAMP_FORMATTABLE_MAX)
                 return -EINVAL;