summaryrefslogtreecommitdiff
path: root/sal/rtl/source
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2010-10-18 14:30:48 +0100
committerCaolán McNamara <caolanm@redhat.com>2010-10-18 14:30:48 +0100
commit684be0a6867510c2b3ca2461447bba83428ec3b0 (patch)
tree15ac3e137d2f7f38affab3f5bf8863882a87f37b /sal/rtl/source
parent619f7da8be28f002ab1e195641b97b85656620a1 (diff)
CLang++ Dead assignment
Diffstat (limited to 'sal/rtl/source')
-rw-r--r--sal/rtl/source/cipher.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/sal/rtl/source/cipher.c b/sal/rtl/source/cipher.c
index cb11f93cb8e4..2966731dfe71 100644
--- a/sal/rtl/source/cipher.c
+++ b/sal/rtl/source/cipher.c
@@ -905,7 +905,6 @@ static void __rtl_cipherBF_updateCFB (
sal_uInt8 c = iv[k];
iv[k] = *pData;
*pBuffer = *pData ^ c;
- c = 0;
}
ctx->m_offset = ((k + 1) & 0x07);