Fix an issue where parameter parsing could lead to an exception
parent
1b70b569ad
commit
aed0eaf4d7
|
@ -227,8 +227,9 @@ namespace OpenSim.Server.Base
|
|||
// The path for a dynamic plugin will contain ":" on Windows
|
||||
string[] parts = dllName.Split (new char[] {':'});
|
||||
|
||||
if (parts [0].Length > 1)
|
||||
if (parts.Length < 3)
|
||||
{
|
||||
// Linux. There will be ':' but the one we're looking for
|
||||
dllName = parts [0];
|
||||
if (parts.Length > 1)
|
||||
className = parts[1];
|
||||
|
|
Loading…
Reference in New Issue