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

gh-96821: Fix undefined behaviour in audioop.c #96923

Merged
merged 11 commits into from
Oct 10, 2022

Commits on Sep 19, 2022

  1. pythongh-96821: Fix undefined behaviour in audioop.c

    Left-shifting negative numbers is undefined behaviour.
    
    Fortunately, multiplication works just as well, is defined behaviour,
    and gets compiled to the same machine code as before by optimizing
    compilers.
    matthiasgoergens committed Sep 19, 2022
    Configuration menu
    Copy the full SHA
    13b5850 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    07d709a View commit details
    Browse the repository at this point in the history

Commits on Sep 20, 2022

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

Commits on Sep 26, 2022

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

Commits on Sep 27, 2022

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

Commits on Oct 5, 2022

  1. Configuration menu
    Copy the full SHA
    c549094 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    15e43a6 View commit details
    Browse the repository at this point in the history

Commits on Oct 8, 2022

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

Commits on Oct 9, 2022

  1. Configuration menu
    Copy the full SHA
    c3f9108 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    da7aab3 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    ba80611 View commit details
    Browse the repository at this point in the history