소스 검색

Always copy bytes to scratch buffer when reading w/MemEnv.

FileState::Read (used by InMemoryEnv) creates a new Slice when reading.
If all the bytes for the read are in the first block then the Slice
points to the private block data in FileState and is not copied to the
|scratch| buffer.

A recent change allows files in InMemEnv to be overwritten which deletes
these blocks and in this case can result in a Slice having a dangling
pointer. This change fixes this bug by always copying to the |scratch|
buffer.

-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=239301930
naive_version
cmumford 5 년 전
committed by Victor Costan
부모
커밋
ce399ac28a
1개의 변경된 파일0개의 추가작업 그리고 7개의 파일을 삭제
  1. +0
    -7
      helpers/memenv/memenv.cc

+ 0
- 7
helpers/memenv/memenv.cc 파일 보기

@ -82,13 +82,6 @@ class FileState {
assert(offset / kBlockSize <= std::numeric_limits<size_t>::max());
size_t block = static_cast<size_t>(offset / kBlockSize);
size_t block_offset = offset % kBlockSize;
if (n <= kBlockSize - block_offset) {
// The requested bytes are all in the first block.
*result = Slice(blocks_[block] + block_offset, n);
return Status::OK();
}
size_t bytes_to_copy = n;
char* dst = scratch;

불러오는 중...
취소
저장