Skip to content
Snippets Groups Projects
Commit 64289248 authored by Richard Linden's avatar Richard Linden
Browse files

EXP-776 WIP [crashhunters] crash in LLCloudLayer::decompress

EXP-777 WIP [crashhunters] crash in LLWind::decompress
added NULL check
parent 604f92fa
No related branches found
No related tags found
No related merge requests found
...@@ -344,6 +344,11 @@ void process_layer_data(LLMessageSystem *mesgsys, void **user_data) ...@@ -344,6 +344,11 @@ void process_layer_data(LLMessageSystem *mesgsys, void **user_data)
{ {
LLViewerRegion *regionp = LLWorld::getInstance()->getRegion(mesgsys->getSender()); LLViewerRegion *regionp = LLWorld::getInstance()->getRegion(mesgsys->getSender());
if(!regionp)
{
llwarns << "Invalid region for layer data." << llendl;
return;
}
S32 size; S32 size;
S8 type; S8 type;
......
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