We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
When the option file contain characters which are not asci (asci value >127) the "isspace" check will cause to crash
We should cast all input characters to be unsigned char.
isspace method (as part of TrimAndRemoveComment) will cause the process to crash.
fill the option file with characters that their ascii value is more than 127.
The text was updated successfully, but these errors were encountered:
jowlyzhang
No branches or pull requests
When the option file contain characters which are not asci (asci value >127) the "isspace" check will cause to crash
Expected behavior
We should cast all input characters to be unsigned char.
Actual behavior
isspace method (as part of TrimAndRemoveComment) will cause the process to crash.
Steps to reproduce the behavior
fill the option file with characters that their ascii value is more than 127.
The text was updated successfully, but these errors were encountered: