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

tlv8 int parsing fixes #10

Merged
merged 1 commit into from
Feb 6, 2023
Merged

tlv8 int parsing fixes #10

merged 1 commit into from
Feb 6, 2023

Commits on Jul 6, 2022

  1. tlv8 int parsing fixes

    this fixes undefined c behaviour when paring uint64_t, int64_t
    (e.g. 255 << 32 has insufficient space as it is done on (u)int32) and also on int32_t (255 << 24 is undefined)
    see e.g. https://stackoverflow.com/questions/11644362/are-the-results-of-bitwise-operations-on-signed-integers-defined
    markirb committed Jul 6, 2022
    Configuration menu
    Copy the full SHA
    30ad6c5 View commit details
    Browse the repository at this point in the history