Check map can be opened

This commit is contained in:
Laurent Vivier 2006-09-13 20:39:55 +00:00
parent b0838c149a
commit 9d5ff84740

View File

@ -96,6 +96,11 @@ void diskinfo(char* device)
printf("%s:", device);
map = emile_map_open(device, O_RDONLY);
if (map == NULL)
{
fprintf(stderr, "Cannot read map of %s\n", device);
return;
}
ret = emile_map_geometry(map, &block_size, &block_count);
if ((ret != -1) && verbose)