diff options
-rw-r--r-- | src/stream/ctr/ctr.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/stream/ctr/ctr.cpp b/src/stream/ctr/ctr.cpp index 7e835e326..0de0b7b84 100644 --- a/src/stream/ctr/ctr.cpp +++ b/src/stream/ctr/ctr.cpp @@ -115,8 +115,6 @@ void CTR_BE::increment_counter() for(size_t i = 0; i != 256; ++i) { - byte* this_ctr = &counter[i * BLOCK_SIZE]; - for(u32bit j = 1; j != BLOCK_SIZE; ++j) if(++counter[i*BLOCK_SIZE + (BLOCK_SIZE-1-j)]) break; |