#10717: Addressing issues brought up by Axel and Gerasim

Signed-off-by: Jessica Hamilton <[email protected]>
This commit is contained in:
Augustin Cavalier
2014-07-06 14:02:12 +12:00
committed by Jessica Hamilton
parent ba38276d19
commit d71c5a1ebf
@@ -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);