Skip to content
Snippets Groups Projects
Commit 22cb1649 authored by Drake Arconis's avatar Drake Arconis
Browse files

Fix the responder fix.

parent 4edfec78
No related branches found
No related tags found
No related merge requests found
...@@ -65,10 +65,10 @@ public: ...@@ -65,10 +65,10 @@ public:
{ {
} }
virtual void httpError() virtual void httpFailure()
{ {
const std::string& reason = getReason();
const S32 statusNum = getStatus(); const S32 statusNum = getStatus();
const std::string& reason = getReason();
LLViewerRegion * regionp = LLWorld::getInstance()->getRegionFromHandle(mRegionHandle); LLViewerRegion * regionp = LLWorld::getInstance()->getRegionFromHandle(mRegionHandle);
if (regionp) if (regionp)
{ {
...@@ -165,8 +165,8 @@ public: ...@@ -165,8 +165,8 @@ public:
virtual void httpFailure() virtual void httpFailure()
{ {
const std::string& reason = getReason();
const S32 statusNum = getStatus(); const S32 statusNum = getStatus();
const std::string& reason = getReason();
LLViewerRegion * regionp = LLWorld::getInstance()->getRegionFromHandle(mRegionHandle); LLViewerRegion * regionp = LLWorld::getInstance()->getRegionFromHandle(mRegionHandle);
if (regionp) if (regionp)
{ {
......
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