Skip to content
Snippets Groups Projects
Commit 78f725cb authored by Tofu Linden's avatar Tofu Linden
Browse files

CID-161

Checker: OVERRUN_STATIC
Function: LLViewerLogin::setGridChoice(EGridInfo)
File: /indra/newview/llviewernetwork.cpp

not a bug.  clarified for coverity.
parent e70d7fca
No related branches found
No related tags found
No related merge requests found
...@@ -169,6 +169,7 @@ void LLViewerLogin::setGridChoice(EGridInfo grid) ...@@ -169,6 +169,7 @@ void LLViewerLogin::setGridChoice(EGridInfo grid)
if(grid < 0 || grid >= GRID_INFO_COUNT) if(grid < 0 || grid >= GRID_INFO_COUNT)
{ {
llerrs << "Invalid grid index specified." << llendl; llerrs << "Invalid grid index specified." << llendl;
return;
} }
if(mGridChoice != grid || gSavedSettings.getS32("ServerChoice") != grid) if(mGridChoice != grid || gSavedSettings.getS32("ServerChoice") != grid)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment