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 64-bit return issue in parse_log_domain() #1237

Merged
1 commit merged into from Aug 27, 2019

Commits on Aug 19, 2019

  1. Fix 64-bit return issue in parse_log_domain()

    If unsigned int is 32-bits long, then our old code would give a
    wrong result with any log domain whose mask was >= (1<<32).
    Fortunately, there are no such log domains right now: the domain
    mask is only 64 bits long to accommodate some flags.
    
    Found by coverity as CID 1452041.
    
    Fixes bug 31451; bugfix on 0.4.1.4-rc.
    nmathewson committed Aug 19, 2019
    Configuration menu
    Copy the full SHA
    87a3c5b View commit details
    Browse the repository at this point in the history