Kaynağa Gözat

Check for possibly invalid offset in test.

Fix a possible array bounds offset issue flagged in
issue #668. Not the source of any known bug, but will
silence any static analyzers.

PiperOrigin-RevId: 243697659
ld
Chris Mumford 5 yıl önce
işlemeyi yapan: Victor Costan
ebeveyn
işleme
2ccb45c33a
1 değiştirilmiş dosya ile 1 ekleme ve 1 silme
  1. +1
    -1
      table/table_test.cc

+ 1
- 1
table/table_test.cc Dosyayı Görüntüle

@ -119,7 +119,7 @@ class StringSource: public RandomAccessFile {
virtual Status Read(uint64_t offset, size_t n, Slice* result,
char* scratch) const {
if (offset > contents_.size()) {
if (offset >= contents_.size()) {
return Status::InvalidArgument("invalid Read offset");
}
if (offset + n > contents_.size()) {

Yükleniyor…
İptal
Kaydet