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 two lines below do not pass &tracerCount[idx - 1] when calling EV_HLDM_FireBullets.
&tracerCount[idx - 1]
EV_HLDM_FireBullets
halflife/cl_dll/ev_hldm.cpp
Line 491 in c7240b9
Line 796 in c7240b9
The code can crash with a null pointer exception if iTracerFreq different from 0 and tracerCount is unspecified.
iTracerFreq
tracerCount
Line 312 in c7240b9
&tracerCount[idx - 1] should always be passed so that it points to a valid memory location.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The two lines below do not pass
&tracerCount[idx - 1]
when callingEV_HLDM_FireBullets
.halflife/cl_dll/ev_hldm.cpp
Line 491 in c7240b9
halflife/cl_dll/ev_hldm.cpp
Line 796 in c7240b9
The code can crash with a null pointer exception if
iTracerFreq
different from 0 andtracerCount
is unspecified.halflife/cl_dll/ev_hldm.cpp
Line 312 in c7240b9
&tracerCount[idx - 1]
should always be passed so that it points to a valid memory location.The text was updated successfully, but these errors were encountered: