diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-10-07 16:18:36 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-10-07 16:35:37 +0200 |
commit | afc0b792b35f40dc1210eb63649c9b88b4496869 (patch) | |
tree | 5f8d00035107e2558c4d5de3903fa8a8408ff46b /svl/source | |
parent | 1526d788f58c7a6a1d0a58991c54b5080bfd70e4 (diff) |
clang-analyzer-deadcode.DeadStores
Change-Id: I0c0475ea6a38ecfd72772d287b8217a0754238d6
Diffstat (limited to 'svl/source')
-rw-r--r-- | svl/source/passwordcontainer/passwordcontainer.cxx | 2 |
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 ); |