diff options
| author | Roxie Linden <roxie@lindenlab.com> | 2024-02-22 19:43:17 -0800 | 
|---|---|---|
| committer | Roxie Linden <roxie@lindenlab.com> | 2024-02-22 19:43:17 -0800 | 
| commit | 1e5e3f130a2651d0217c6e20b8971f9f6677ab81 (patch) | |
| tree | e820259c25110ddc266b19d796a494e466d136b0 | |
| parent | 7287cfbd7ad8f61114d0176c6fc7c3218c758900 (diff) | |
Initialize versions
| -rw-r--r-- | indra/newview/llvoicevivox.cpp | 4 | ||||
| -rw-r--r-- | indra/newview/llvoicewebrtc.cpp | 3 | 
2 files changed, 7 insertions, 0 deletions
| diff --git a/indra/newview/llvoicevivox.cpp b/indra/newview/llvoicevivox.cpp index d708870314..e003dc3317 100644 --- a/indra/newview/llvoicevivox.cpp +++ b/indra/newview/llvoicevivox.cpp @@ -360,6 +360,10 @@ LLVivoxVoiceClient::LLVivoxVoiceClient() :  	mVoiceVersion.serverVersion = "";  	mVoiceVersion.voiceServerType = VISIBLE_VOICE_SERVER_TYPE; +    mVoiceVersion.majorVersion = 1; +    mVoiceVersion.minorVersion = 0; +    mVoiceVersion.mBuildVersion = ""; +    mVoiceVersion.serverVersion = "";  	//  gMuteListp isn't set up at this point, so we defer this until later.  //	gMuteListp->addObserver(&mutelist_listener); diff --git a/indra/newview/llvoicewebrtc.cpp b/indra/newview/llvoicewebrtc.cpp index 0332557229..f276811b25 100644 --- a/indra/newview/llvoicewebrtc.cpp +++ b/indra/newview/llvoicewebrtc.cpp @@ -291,6 +291,9 @@ LLWebRTCVoiceClient::LLWebRTCVoiceClient() :  	mVoiceVersion.serverVersion = "";  	mVoiceVersion.voiceServerType = VISIBLE_VOICE_SERVER_TYPE; +    mVoiceVersion.minorVersion = 0; +    mVoiceVersion.majorVersion = 2; +    mVoiceVersion.mBuildVersion = "";  #if LL_DARWIN || LL_LINUX  		// HACK: THIS DOES NOT BELONG HERE | 
