Browse Source

Deleted redundant null ptr check prior to delete.

Fixes issue #338.
-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=113439460
ld
cmumford 8 years ago
committed by Chris Mumford
parent
commit
3211343909
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      table/table.cc

+ 1
- 1
table/table.cc View File

@ -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;

Loading…
Cancel
Save