Skip to content

Commit 9a0450a

Browse files
GustavoARSilvajgross1
authored andcommitted
xen: Replace one-element array with flexible-array member
One-element arrays are deprecated, and we are replacing them with flexible array members instead. So, replace one-element array with flexible-array member in struct xen_page_directory. 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 [1]. This results in no differences in binary output. Link: KSPP#79 Link: KSPP#255 Link: https://gcc.gnu.org/pipermail/gcc-patches/2022-October/602902.html [1] Signed-off-by: Gustavo A. R. Silva <[email protected]> Reviewed-by: Kees Cook <[email protected]> Reviewed-by: Juergen Gross <[email protected]> Link: https://lore.kernel.org/r/Y9xjN6Wa3VslgXeX@work Signed-off-by: Juergen Gross <[email protected]>
1 parent 2062f9f commit 9a0450a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/xen/xen-front-pgdir-shbuf.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
struct xen_page_directory {
3131
grant_ref_t gref_dir_next_page;
3232
#define XEN_GREF_LIST_END 0
33-
grant_ref_t gref[1]; /* Variable length */
33+
grant_ref_t gref[]; /* Variable length */
3434
};
3535

3636
/**

0 commit comments

Comments
 (0)