diff options
author | Aimee Linden <aimee@lindenlab.com> | 2010-08-16 17:03:23 +0100 |
---|---|---|
committer | Aimee Linden <aimee@lindenlab.com> | 2010-08-16 17:03:23 +0100 |
commit | 3b59f688c14d36d2b5126fe19a01882edee6c4b9 (patch) | |
tree | be14e55eee8b5e207c20891c72ee84a201b129a7 | |
parent | 6981353b1a24d07512ca7aca74fadf50dbaf6732 (diff) |
VWR-20673 (SNOW-743) FIXED Compiler warning: 'region_access' may be used uninitialized in this function
-rw-r--r-- | doc/contributions.txt | 1 | ||||
-rw-r--r-- | indra/newview/llviewermessage.cpp | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/doc/contributions.txt b/doc/contributions.txt index 852c1c5f92..fd43155523 100644 --- a/doc/contributions.txt +++ b/doc/contributions.txt @@ -618,6 +618,7 @@ Tharax Ferraris VWR-605 Thickbrick Sleaford SNOW-207 + SNOW-743 VWR-7109 VWR-9287 VWR-13483 diff --git a/indra/newview/llviewermessage.cpp b/indra/newview/llviewermessage.cpp index e1855a554b..2a6b272741 100644 --- a/indra/newview/llviewermessage.cpp +++ b/indra/newview/llviewermessage.cpp @@ -2651,7 +2651,7 @@ void process_improved_im(LLMessageSystem *msg, void **user_data) { LLVector3 pos, look_at; U64 region_handle; - U8 region_access; + U8 region_access = SIM_ACCESS_MIN; std::string region_info = ll_safe_string((char*)binary_bucket, binary_bucket_size); std::string region_access_str = LLStringUtil::null; std::string region_access_icn = LLStringUtil::null; |