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
The status bar HUD element accepts out of range indices in the user message handlers:
halflife/cl_dll/statusbar.cpp
Line 236 in c7240b9
Line 257 in c7240b9
They should check the values like this:
if ( line < 0 || line >= MAX_STATUSBAR_LINES ) if ( index < 1 || index >= MAX_STATUSBAR_VALUES )
The text was updated successfully, but these errors were encountered:
Client: Statusbar: Fix bounds checks
2b280e3
ValveSoftware/halflife#3242
Fix status bar accepting out of range indices
86d3496
Resolves ValveSoftware/halflife#3242
No branches or pull requests
The status bar HUD element accepts out of range indices in the user message handlers:
halflife/cl_dll/statusbar.cpp
Line 236 in c7240b9
halflife/cl_dll/statusbar.cpp
Line 257 in c7240b9
They should check the values like this:
The text was updated successfully, but these errors were encountered: