diff options
author | Richard Linden <none@none> | 2010-09-21 14:28:03 -0700 |
---|---|---|
committer | Richard Linden <none@none> | 2010-09-21 14:28:03 -0700 |
commit | 325f16d0b4c8fc9de694121d770a4931a7b98529 (patch) | |
tree | ae54bcf03abb4f0375a06b90b484c753522d3d7b /indra/llui/llnotifications.cpp | |
parent | 9479c872746074d27d245b2af2d17a760a927915 (diff) |
fix for mac build and possible crash when responding to notification twice
Diffstat (limited to 'indra/llui/llnotifications.cpp')
-rw-r--r-- | indra/llui/llnotifications.cpp | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/indra/llui/llnotifications.cpp b/indra/llui/llnotifications.cpp index 9d14c4149c..ab9bd12b85 100644 --- a/indra/llui/llnotifications.cpp +++ b/indra/llui/llnotifications.cpp @@ -600,7 +600,7 @@ void LLNotification::respond(const LLSD& response) { mResponder->handleRespond(asLLSD(), response); } - else + else if (!mResponseFunctorName.empty()) { // look up the functor LLNotificationFunctorRegistry::ResponseFunctor functor = @@ -608,6 +608,11 @@ void LLNotification::respond(const LLSD& response) // and then call it functor(asLLSD(), response); } + else + { + // no registered responder + return; + } if (mTemporaryResponder && !isReusable()) { |