HDFS-12487. FsDatasetSpi.isValidBlock() lacks null pointer check inside and neither do the callers. Contributed by liumi.

This commit is contained in:
Wei-Chiu Chuang 2019-06-21 18:17:36 -07:00
parent 371452e260
commit 1524e2e6c5
1 changed files with 5 additions and 0 deletions

View File

@ -905,6 +905,11 @@ public class DiskBalancer {
while (!iter.atEnd() && item.getErrorCount() < getMaxError(item)) {
try {
ExtendedBlock block = iter.nextBlock();
if(null == block){
LOG.info("NextBlock call returned null.No valid block to copy. {}",
item.toJson());
return block;
}
if (block != null) {
// A valid block is a finalized block, we iterate until we get