When compiling with MSVC the error below pops up: ../app/test/test_ipfrag.c(39): error C2466: cannot allocate an array of constant size 0 ../app/test/test_ipfrag.c(157): warning C4034: sizeof returns 0 ../app/test/test_ipfrag.c(160): warning C4034: sizeof returns 0
The fix is to simplify the code and remove the zero-size array. Signed-off-by: Andre Muezerie <andre...@linux.microsoft.com> --- app/test/test_ipfrag.c | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/app/test/test_ipfrag.c b/app/test/test_ipfrag.c index 18d6727157..95d7952b4d 100644 --- a/app/test/test_ipfrag.c +++ b/app/test/test_ipfrag.c @@ -36,8 +36,6 @@ uint8_t expected_first_frag_ipv4_opts_nocopied[] = { 0x00, 0x00, 0x00, 0x00, }; -uint8_t expected_sub_frag_ipv4_opts_nocopied[0]; - struct test_opt_data { bool is_first_frag; /**< offset is 0 */ bool opt_copied; /**< ip option copied flag */ @@ -153,11 +151,8 @@ test_get_ipv4_opt(bool is_first_frag, bool opt_copied, expected_sub_frag_ipv4_opts_copied, sizeof(expected_sub_frag_ipv4_opts_copied)); } else { - expected_opt->len = - sizeof(expected_sub_frag_ipv4_opts_nocopied); - memcpy(expected_opt->data, - expected_sub_frag_ipv4_opts_nocopied, - sizeof(expected_sub_frag_ipv4_opts_nocopied)); + expected_opt->len = 0; + /* No data to be copied */ } } } -- 2.48.1.vfs.0.0