提交 969cf3e6 编写于 作者: G Gustavo A. R. Silva 提交者: Luiz Augusto von Dentz

Bluetooth: HCI: Replace zero-length arrays with flexible-array members

Zero-length arrays are deprecated[1] and we are moving towards
adopting C99 flexible-array members instead. So, replace zero-length
arrays in a couple of structures with flex-array members.

This helps with the ongoing efforts to tighten the FORTIFY_SOURCE
routines on memcpy() and help us make progress towards globally
enabling -fstrict-flex-arrays=3 [2].

Link: https://www.kernel.org/doc/html/latest/process/deprecated.html#zero-length-and-one-element-arrays [1]
Link: https://gcc.gnu.org/pipermail/gcc-patches/2022-October/602902.html [2]
Link: https://github.com/KSPP/linux/issues/78Signed-off-by: NGustavo A. R. Silva <gustavoars@kernel.org>
Signed-off-by: NLuiz Augusto von Dentz <luiz.von.dentz@intel.com>
上级 fec2972a
...@@ -2156,7 +2156,7 @@ struct hci_cp_le_big_create_sync { ...@@ -2156,7 +2156,7 @@ struct hci_cp_le_big_create_sync {
__u8 mse; __u8 mse;
__le16 timeout; __le16 timeout;
__u8 num_bis; __u8 num_bis;
__u8 bis[0]; __u8 bis[];
} __packed; } __packed;
#define HCI_OP_LE_BIG_TERM_SYNC 0x206c #define HCI_OP_LE_BIG_TERM_SYNC 0x206c
...@@ -2174,7 +2174,7 @@ struct hci_cp_le_setup_iso_path { ...@@ -2174,7 +2174,7 @@ struct hci_cp_le_setup_iso_path {
__le16 codec_vid; __le16 codec_vid;
__u8 delay[3]; __u8 delay[3];
__u8 codec_cfg_len; __u8 codec_cfg_len;
__u8 codec_cfg[0]; __u8 codec_cfg[];
} __packed; } __packed;
struct hci_rp_le_setup_iso_path { struct hci_rp_le_setup_iso_path {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册