mirror of
https://github.com/opensim/opensim.git
synced 2026-08-01 06:06:06 +08:00
Guard HGAssetService against uninitialized variables and null arguments.
This commit is contained in:
@@ -129,6 +129,9 @@ namespace OpenSim.Services.HypergridService
|
||||
|
||||
protected void AdjustIdentifiers(AssetMetadata meta)
|
||||
{
|
||||
if (meta == null || m_Cache == null)
|
||||
return;
|
||||
|
||||
UserAccount creator = m_Cache.GetUser(meta.CreatorID);
|
||||
if (creator != null)
|
||||
meta.CreatorID = m_ProfileServiceURL + "/" + meta.CreatorID + ";" + creator.FirstName + " " + creator.LastName;
|
||||
|
||||
Reference in New Issue
Block a user