am a97c1075: Merge "Fix Nick\'s nits"
* commit 'a97c10755442e3800c0b1011d986d554ce2096db': Fix Nick's nits
This commit is contained in:
commit
9ccf0cbaf1
|
@ -412,7 +412,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
|
||||
|
@ -462,9 +462,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