Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix #438: Check for overflow in Duration and Timestamp processing #439

Merged

Commits on Jun 6, 2021

  1. Configuration menu
    Copy the full SHA
    ca0a4db View commit details
    Browse the repository at this point in the history
  2. Check for overflow when converting Timestamp to SystemTime.

    Whether or not such an overflow is possible depends on the platform. It does not appear possible on `x86_64-unknown-linux-gnu` (which represents time with a 64-bit signed integer for seconds, same as `Timestamp`), but it is possible on `i686-unknown-linux-gnu` (which represents time with a 32-bit signed integer for seconds) and `x86_64-pc-windows-msvc` (which has a different representation of time altogether).
    argv-minus-one committed Jun 6, 2021
    Configuration menu
    Copy the full SHA
    a323f6e View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    88f5346 View commit details
    Browse the repository at this point in the history
  4. Apply rustfmt.

    argv-minus-one committed Jun 6, 2021
    Configuration menu
    Copy the full SHA
    1b7007a View commit details
    Browse the repository at this point in the history

Commits on Jul 5, 2021

  1. Configuration menu
    Copy the full SHA
    ecbae11 View commit details
    Browse the repository at this point in the history

Commits on Jul 6, 2021

  1. Configuration menu
    Copy the full SHA
    d889685 View commit details
    Browse the repository at this point in the history