am 97e48731: Fix Nick\'s nits
* commit '97e487311b1cb780dfd3b0994917c72047d6188f': Fix Nick's nits
This commit is contained in:
commit
a1ab5a8ecf
|
@ -408,7 +408,7 @@ int fs_mgr_setup_verity(struct fstab_rec *fstab) {
|
|||
// get the device mapper fd
|
||||
if ((fd = open("/dev/device-mapper", O_RDWR)) < 0) {
|
||||
ERROR("Error opening device mapper (%s)", strerror(errno));
|
||||
goto out;;
|
||||
goto out;
|
||||
}
|
||||
|
||||
// create the device
|
||||
|
@ -458,9 +458,9 @@ out:
|
|||
close(fd);
|
||||
}
|
||||
|
||||
free (verity_table);
|
||||
free (verity_table_signature);
|
||||
free (verity_blk_name);
|
||||
free(verity_table);
|
||||
free(verity_table_signature);
|
||||
free(verity_blk_name);
|
||||
|
||||
return retval;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue