#10717: Addressing issues brought up by Axel and Gerasim

Signed-off-by: Jessica Hamilton <jessica.l.hamilton@gmail.com>
This commit is contained in:
Augustin Cavalier 2014-07-05 20:17:56 -04:00 committed by Jessica Hamilton
parent ba38276d19
commit d71c5a1ebf
1 changed files with 3 additions and 3 deletions

View File

@ -69,10 +69,10 @@ KPartitioningSystem::Identify(KPartition *partition, void **cookie)
int fd = -1;
if (partition->Open(O_RDONLY, &fd) != B_OK)
return -1;
// if BlockSize is 0, identify_partition will cause a KDL
if (partition->BlockSize() == 0)
if (partition->BlockSize() == 0) {
close(fd);
return -1;
}
float result = fModule->identify_partition(fd, partition->PartitionData(),
cookie);