summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2015-10-07 16:18:36 +0200
committerStephan Bergmann <sbergman@redhat.com>2015-10-07 16:35:37 +0200
commitafc0b792b35f40dc1210eb63649c9b88b4496869 (patch)
tree5f8d00035107e2558c4d5de3903fa8a8408ff46b
parent1526d788f58c7a6a1d0a58991c54b5080bfd70e4 (diff)
clang-analyzer-deadcode.DeadStores
Change-Id: I0c0475ea6a38ecfd72772d287b8217a0754238d6
-rw-r--r--svl/source/passwordcontainer/passwordcontainer.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/svl/source/passwordcontainer/passwordcontainer.cxx b/svl/source/passwordcontainer/passwordcontainer.cxx
index a6e8a83f69cd..8aa6c2a2d91b 100644
--- a/svl/source/passwordcontainer/passwordcontainer.cxx
+++ b/svl/source/passwordcontainer/passwordcontainer.cxx
@@ -465,7 +465,7 @@ vector< OUString > PasswordContainer::DecodePasswords( const OUString& aLine, co
::rtl::ByteSequence resSeq( aSeq.getLength() );
- result = rtl_cipher_decode ( aDecoder, aSeq.getArray(), aSeq.getLength(),
+ rtl_cipher_decode ( aDecoder, aSeq.getArray(), aSeq.getLength(),
reinterpret_cast<sal_uInt8*>(resSeq.getArray()), resSeq.getLength() );
OUString aPasswd( reinterpret_cast<char*>(resSeq.getArray()), resSeq.getLength(), RTL_TEXTENCODING_UTF8 );