diff options
author | Tofu Linden <tofu.linden@lindenlab.com> | 2010-01-29 14:02:59 -0800 |
---|---|---|
committer | Tofu Linden <tofu.linden@lindenlab.com> | 2010-01-29 14:02:59 -0800 |
commit | 93b35ad444bea4257b2bd80029e3d01acec1f497 (patch) | |
tree | 5a51095b600687f05128f46e94580ff02fc8cbe5 /indra | |
parent | 458920d9d6d937ec8754bb61d825580018c2ac0d (diff) |
CID-342 alternative fix
Checker: UNINIT_CTOR
Function: LLNotification::LLNotification(LLUUID)
File: /indra/llui/llnotifications.h
Diffstat (limited to 'indra')
-rw-r--r-- | indra/llui/llnotifications.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llui/llnotifications.h b/indra/llui/llnotifications.h index cf76d00dcf..d55e0f4043 100644 --- a/indra/llui/llnotifications.h +++ b/indra/llui/llnotifications.h @@ -371,7 +371,7 @@ private: // this is just for making it easy to look things up in a set organized by UUID -- DON'T USE IT // for anything real! - LLNotification(LLUUID uuid) : mId(uuid) {} + LLNotification(LLUUID uuid) : mId(uuid), mCancelled(false), mRespondedTo(false), mIgnored(false), mTemporaryResponder(false) {} void cancel(); |