Skip to content

Commit 6301e22

Browse files
committed
Auto merge of #33072 - tbu-:pr_duration_new_overflow, r=alexcrichton
Panic on overflow in `Duration::new` constructor Panicking on overflow is also done for `+`, and it replaces the currently incorrect overflow behavior of wrapping around, which does not make sense for `Duration`s.
2 parents 68d399d + b25bb53 commit 6301e22

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

src/libstd/time/duration.rs

+7-1
Original file line numberDiff line numberDiff line change
@@ -51,10 +51,16 @@ impl Duration {
5151
///
5252
/// If the nanoseconds is greater than 1 billion (the number of nanoseconds
5353
/// in a second), then it will carry over into the seconds provided.
54+
///
55+
/// # Panics
56+
///
57+
/// This constructor will panic if the carry from the nanoseconds overflows
58+
/// the seconds counter.
5459
#[stable(feature = "duration", since = "1.3.0")]
5560
#[inline]
5661
pub fn new(secs: u64, nanos: u32) -> Duration {
57-
let secs = secs + (nanos / NANOS_PER_SEC) as u64;
62+
let secs = secs.checked_add((nanos / NANOS_PER_SEC) as u64)
63+
.expect("overflow in Duration::new");
5864
let nanos = nanos % NANOS_PER_SEC;
5965
Duration { secs: secs, nanos: nanos }
6066
}

0 commit comments

Comments
 (0)