Re: [PATCH][next] xen: Replace one-element array with flexible-array member

2023-02-13 Thread Juergen Gross
On 03.02.23 02:28, Gustavo A. R. Silva wrote: 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

Re: [PATCH][next] xen: Replace one-element array with flexible-array member

2023-02-13 Thread Juergen Gross
On 03.02.23 02:28, Gustavo A. R. Silva wrote: 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

Re: [PATCH][next] xen: Replace one-element array with flexible-array member

2023-02-03 Thread Kees Cook
On Thu, Feb 02, 2023 at 07:28:23PM -0600, Gustavo A. R. Silva wrote: > 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 effort

[PATCH][next] xen: Replace one-element array with flexible-array member

2023-02-02 Thread Gustavo A. R. Silva
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