Skip to content

Commit

Permalink
fix maybe uninitialized for gcc 15
Browse files Browse the repository at this point in the history
  • Loading branch information
AiraYumi committed Jan 4, 2025
1 parent 916a8fd commit 5d233aa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion indra/newview/llvoiceclient.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -310,7 +310,7 @@ const LLVoiceVersionInfo LLVoiceClient::getVersion()
}
else
{
LLVoiceVersionInfo result;
LLVoiceVersionInfo result = {};
result.serverVersion = std::string();
result.voiceServerType = std::string();
result.mBuildVersion = std::string();
Expand Down

0 comments on commit 5d233aa

Please sign in to comment.