Skip to content

Commit 5d233aa

Browse files
committed
fix maybe uninitialized for gcc 15
1 parent 916a8fd commit 5d233aa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

indra/newview/llvoiceclient.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -310,7 +310,7 @@ const LLVoiceVersionInfo LLVoiceClient::getVersion()
310310
}
311311
else
312312
{
313-
LLVoiceVersionInfo result;
313+
LLVoiceVersionInfo result = {};
314314
result.serverVersion = std::string();
315315
result.voiceServerType = std::string();
316316
result.mBuildVersion = std::string();

0 commit comments

Comments
 (0)