瀏覽代碼

Merge pull request #506 from lingbin:fix_issue_505

PiperOrigin-RevId: 420787858
main
Victor Costan 2 年之前
父節點
當前提交
1b51a3a968
共有 1 個檔案被更改,包括 0 行新增10 行删除
  1. +0
    -10
      util/coding.cc

+ 0
- 10
util/coding.cc 查看文件

@ -142,16 +142,6 @@ bool GetVarint64(Slice* input, uint64_t* value) {
}
}
const char* GetLengthPrefixedSlice(const char* p, const char* limit,
Slice* result) {
uint32_t len;
p = GetVarint32Ptr(p, limit, &len);
if (p == nullptr) return nullptr;
if (p + len > limit) return nullptr;
*result = Slice(p, len);
return p + len;
}
bool GetLengthPrefixedSlice(Slice* input, Slice* result) {
uint32_t len;
if (GetVarint32(input, &len) && input->size() >= len) {

Loading…
取消
儲存