summaryrefslogtreecommitdiff
path: root/ipc
diff options
context:
space:
mode:
authorThorsten Blum <thorsten.blum@linux.dev>2024-09-30 21:58:22 +0200
committerAndrew Morton <akpm@linux-foundation.org>2024-11-05 17:12:28 -0800
commitf9a4d8930f272fd76edc1f76062b5ca316bda25d (patch)
treebdb11f9e5e73ba8ebfc085a916f9bce9cd4532aa /ipc
parent9357bf5e66660cf56da44905ff2b158056bc6087 (diff)
ipc/msg: replace one-element array with flexible array member
Replace the deprecated one-element array with a modern flexible array member in the struct compat_msgbuf. There are no binary differences after this conversion. Link: https://github.com/KSPP/linux/issues/79 Link: https://lkml.kernel.org/r/20240930195824.153648-2-thorsten.blum@linux.dev Signed-off-by: Thorsten Blum <thorsten.blum@linux.dev> Cc: "Sun, Jiebin" <jiebin.sun@intel.com> Cc: Tim Chen <tim.c.chen@linux.intel.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Diffstat (limited to 'ipc')
-rw-r--r--ipc/msg.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ipc/msg.c b/ipc/msg.c
index fd08b3cb36d7..ee6af4fe52bf 100644
--- a/ipc/msg.c
+++ b/ipc/msg.c
@@ -978,7 +978,7 @@ SYSCALL_DEFINE4(msgsnd, int, msqid, struct msgbuf __user *, msgp, size_t, msgsz,
struct compat_msgbuf {
compat_long_t mtype;
- char mtext[1];
+ char mtext[];
};
long compat_ksys_msgsnd(int msqid, compat_uptr_t msgp,