diff options
author | Jan Kara <jack@suse.cz> | 2023-10-03 11:19:02 +0200 |
---|---|---|
committer | Jan Kara <jack@suse.cz> | 2023-10-03 11:27:52 +0200 |
commit | bceef326bc87781abb5139898d5f2807881194d9 (patch) | |
tree | 354d3f836d9904cf52889de606a0230f8e792416 /fs | |
parent | d1d3fcb324eceee7c4bf34b0ac89942ee16e3b74 (diff) |
udf: Avoid unneeded variable length array in struct fileIdentDesc
impUse variable length array in struct fileIdentDesc is never used.
It serves only for documentation purposes of the on-disk format. Remove
it from the struct so that it doesn't confuse the compiler and
reviewers.
Reported-by: "Gustavo A. R. Silva" <gustavoars@kernel.org>
References: https://lore.kernel.org/all/ZRrsYkKIQe8K6F/t@work
Signed-off-by: Jan Kara <jack@suse.cz>
Diffstat (limited to 'fs')
-rw-r--r-- | fs/udf/ecma_167.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/udf/ecma_167.h b/fs/udf/ecma_167.h index de17a97e8667..415b050b977d 100644 --- a/fs/udf/ecma_167.h +++ b/fs/udf/ecma_167.h @@ -471,7 +471,7 @@ struct fileIdentDesc { uint8_t lengthFileIdent; struct long_ad icb; __le16 lengthOfImpUse; - uint8_t impUse[]; + /* uint8_t impUse[]; */ /* uint8_t fileIdent[]; */ /* uint8_t padding[]; */ } __packed; |