Fix remaining bugs in libstancd/cd9660.c reported by Bruce Evans.

Fixed text in comments.

Reported by:	Bruce Evans <brde@optusnet.com.au>
Reviewed by:	allanjude
Approved by:	allanjude (mentor)
Differential Revision:	https://reviews.freebsd.org/D8119
This commit is contained in:
Toomas Soome 2016-10-03 14:07:15 +00:00
parent edb2994a62
commit ef97c45728
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=306638

View File

@ -353,9 +353,9 @@ cd9660_open(const char *path, struct open_file *f)
dp = (struct iso_directory_record *)
((char *) dp + isonum_711(dp->length));
/* if the new block is zero length, its padding */
/* If the new block has zero length, it is padding. */
if (isonum_711(dp->length) == 0) {
/* skip to next block, if any */
/* Skip to next block, if any. */
off = boff * ISO_DEFAULT_BLOCK_SIZE;
continue;
}