Fix Nick's nits

Change-Id: Ide7925e7ad328f0343d444d63ff72f1a26206d4c
This commit is contained in:
Paul Lawrence 2014-10-09 09:37:00 -07:00
parent bbb3631911
commit 97e487311b

View file

@ -406,7 +406,7 @@ int fs_mgr_setup_verity(struct fstab_rec *fstab) {
// get the device mapper fd // get the device mapper fd
if ((fd = open("/dev/device-mapper", O_RDWR)) < 0) { if ((fd = open("/dev/device-mapper", O_RDWR)) < 0) {
ERROR("Error opening device mapper (%s)", strerror(errno)); ERROR("Error opening device mapper (%s)", strerror(errno));
goto out;; goto out;
} }
// create the device // create the device
@ -456,9 +456,9 @@ out:
close(fd); close(fd);
} }
free (verity_table); free(verity_table);
free (verity_table_signature); free(verity_table_signature);
free (verity_blk_name); free(verity_blk_name);
return retval; return retval;
} }