Fix a major security problem with osSetDynamicTexture which allowed the deletion of /any/ asset.
parent
74b3ce8572
commit
3ff28e7a8f
|
@ -358,11 +358,18 @@ namespace OpenSim.Region.CoreModules.Scripting.DynamicTexture
|
||||||
// tmptex.DefaultTexture.Fullbright = true;
|
// tmptex.DefaultTexture.Fullbright = true;
|
||||||
|
|
||||||
part.UpdateTexture(tmptex);
|
part.UpdateTexture(tmptex);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (oldID != UUID.Zero && ((Disp & DISP_EXPIRE) != 0))
|
if (oldID != UUID.Zero && ((Disp & DISP_EXPIRE) != 0))
|
||||||
{
|
{
|
||||||
scene.AssetService.Delete(oldID.ToString());
|
if (oldAsset == null) oldAsset = scene.AssetService.Get(oldID.ToString());
|
||||||
|
if (oldAsset != null)
|
||||||
|
{
|
||||||
|
if (oldAsset.Temporary == true)
|
||||||
|
{
|
||||||
|
scene.AssetService.Delete(oldID.ToString());
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue