File tree Expand file tree Collapse file tree 2 files changed +2
-3
lines changed
branches/try/src/libcore/hash Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Original file line number Diff line number Diff line change 1
1
---
2
2
refs/heads/master: aca2057ed5fb7af3f8905b2bc01f72fa001c35c8
3
3
refs/heads/snap-stage3: 1af31d4974e33027a68126fa5a5a3c2c6491824f
4
- refs/heads/try: f910d27f87419e17cc59034265f6795db5247dfa
4
+ refs/heads/try: 5f6a61e16524025a690ac5512669583145db94b1
5
5
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
6
6
refs/tags/release-0.2: c870d2dffb391e14efb05aa27898f1f6333a9596
7
7
refs/tags/release-0.3: b5f0d0f648d9a6153664837026ba1be43d3e2503
Original file line number Diff line number Diff line change @@ -161,11 +161,10 @@ impl SipHasher {
161
161
162
162
// Buffered tail is now flushed, process new input.
163
163
let len = length - needed;
164
- let end = len & ( !0x7 ) ;
165
164
let left = len & 0x7 ;
166
165
167
166
let mut i = needed;
168
- while i < end {
167
+ while i < len - left {
169
168
let mi = unsafe { load_u64_le ( msg, i) } ;
170
169
171
170
self . v3 ^= mi;
You can’t perform that action at this time.
0 commit comments