mirror of
https://github.com/tbsdtv/linux_media.git
synced 2025-07-23 12:43:29 +02:00
fs: Replace zero-length array with flexible-array member
There is a regular need in the kernel to provide a way to declare having a dynamically sized set of trailing elements in a structure. Kernel code should always use “flexible array members”[1] for these cases. The older style of one-element or zero-length arrays should no longer be used[2]. [1] https://en.wikipedia.org/wiki/Flexible_array_member [2] https://www.kernel.org/doc/html/v5.9-rc1/process/deprecated.html#zero-length-and-one-element-arrays Signed-off-by: Gustavo A. R. Silva <gustavoars@kernel.org>
This commit is contained in:
@@ -1690,7 +1690,7 @@ struct elf_thread_core_info {
|
||||
struct elf_thread_core_info *next;
|
||||
struct task_struct *task;
|
||||
struct elf_prstatus prstatus;
|
||||
struct memelfnote notes[0];
|
||||
struct memelfnote notes[];
|
||||
};
|
||||
|
||||
struct elf_note_info {
|
||||
|
Reference in New Issue
Block a user