Merge pull request #802 from jerry73204/fix-reading-buf-bug

pull/807/head
Friedel Ziegelmayer 5 years ago committed by GitHub
commit 0ec027dbff
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -673,7 +673,7 @@ impl LockGuard<State> {
if available > 0 || self.cache.is_empty() {
// Copy data from the cache into the buffer.
let n = cmp::min(available, buf.len());
buf[..n].copy_from_slice(&self.cache[start..n]);
buf[..n].copy_from_slice(&self.cache[start..(start + n)]);
// Move the read cursor forward.
self.mode = Mode::Reading(start + n);

Loading…
Cancel
Save