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
sm version
SourceMod Version Information: SourceMod Version: 1.12.0.7165 SourcePawn Engine: 1.12.0.7165, jit-x86 (build 1.12.0.7165)
Game: L4D2 System: Windows
Compile the following the codes with SourcePawn Compiler 1.12.0.7165 -> launch game -> type !test -> server crash
!test
public void OnPluginStart() { RegConsoleCmd("sm_test", sm_test); } Action sm_test(int client, int args) { float AAA[3]; static float BBB[3] = {0.1,0.2,0.3}; // crash AAA = BBB; // not crash AAA[0] = BBB[0]; AAA[1] = BBB[1]; AAA[2] = BBB[2]; return Plugin_Handled; }
It won't happen in the previous compiler version: 1.12.0.7164 or 1.11
The text was updated successfully, but these errors were encountered:
Related alliedmodders/sourcepawn/issues/977
Sorry, something went wrong.
No branches or pull requests
sm version
Game: L4D2
System: Windows
Compile the following the codes with SourcePawn Compiler 1.12.0.7165 -> launch game -> type
!test
-> server crashIt won't happen in the previous compiler version: 1.12.0.7164 or 1.11
The text was updated successfully, but these errors were encountered: