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 normalise_string to prevent issues when lexer->buflen == 0 #4359

Merged
merged 1 commit into from
Jul 7, 2023

Commits on Jul 6, 2023

  1. fix normalise_string to prevent issues when lexer->buflen == 0

    This was flagged by either the memory sanitizer or the undefined
    behavior sanitizer as an issue.
    
    This commit changes the datatype of `i` to be `ssize_t` so that
    `lexer->buflen - 1` becomes less than 0 when `lexer->buflen` == 0.
    dipinhora committed Jul 6, 2023
    Configuration menu
    Copy the full SHA
    507335c View commit details
    Browse the repository at this point in the history