Skip to content
Snippets Groups Projects
Commit 7931cac1 authored by Graham Madarasz's avatar Graham Madarasz
Browse files

MATBUG-126 BUG-2707 speculative fix for login crasher based on stack from Kat

parent 8d4594cd
No related branches found
No related tags found
No related merge requests found
......@@ -93,5 +93,12 @@ class UriRewriteResponder: public LLAres::UriRewriteResponder
void LLAresListener::rewriteURI(const LLSD& data)
{
mAres->rewriteURI(data["uri"], new UriRewriteResponder(data));
if (mAres)
{
mAres->rewriteURI(data["uri"], new UriRewriteResponder(data));
}
else
{
llinfos << "LLAresListener::rewriteURI requested without Ares present. Ignoring: " << data << llendl;
}
}
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