ソースを参照

Deleted redundant null ptr check prior to delete.

Fixes issue #338.
-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=113439460
main
cmumford 8年前
committed by Chris Mumford
コミット
3211343909
1個のファイルの変更1行の追加1行の削除
  1. +1
    -1
      table/table.cc

+ 1
- 1
table/table.cc ファイルの表示

@ -82,7 +82,7 @@ Status Table::Open(const Options& options,
*table = new Table(rep);
(*table)->ReadMeta(footer);
} else {
if (index_block) delete index_block;
delete index_block;
}
return s;

読み込み中…
キャンセル
保存