diff options
author | Caolán McNamara <caolanm@redhat.com> | 2012-10-10 09:28:34 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2012-10-10 09:29:00 +0100 |
commit | 19d37e5c4bd43d2477d21fbaeccef923a60eb9ec (patch) | |
tree | 25f28316783b40d04f5dc5a2663c9c7d9525f9f5 /sal/qa/rtl | |
parent | c14bd74f268d4883a73f46a7ceac2d2e98ac96a3 (diff) |
loplugin: unused O[U]Strings
Change-Id: I020149a3073d8479887d108465cf5d3b727588d7
Diffstat (limited to 'sal/qa/rtl')
-rw-r--r-- | sal/qa/rtl/cipher/rtl_cipher.cxx | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/sal/qa/rtl/cipher/rtl_cipher.cxx b/sal/qa/rtl/cipher/rtl_cipher.cxx index 2b982e51e7f1..9514bd5ff27c 100644 --- a/sal/qa/rtl/cipher/rtl_cipher.cxx +++ b/sal/qa/rtl/cipher/rtl_cipher.cxx @@ -258,8 +258,6 @@ public: /* rtlCipherError */ aError = rtl_cipher_decode(aCipher, pCipherBuffer, nCipherLen, pPlainText2Buffer, nPlainText2Len); CPPUNIT_ASSERT_MESSAGE("wrong decode", aError == rtl_Cipher_E_None); - rtl::OString sPlainText2Str((char*)pPlainText2Buffer, nPlainText2Len); - sal_Int32 nCompare = memcmp(pPlainTextBuffer, pPlainText2Buffer, 16); CPPUNIT_ASSERT_MESSAGE("compare between plain and decoded plain failed", nCompare == 0); |