最小代码:
#include <stdio.h>
#include <stdint.h>
// gcc test.c
// gcc 11.2.1 20210816 [revision 056e324ce46a7924b5cf10f61010cf9dd2ca10e9]
// bug
// test.c:41:5: Warning: «test_bug» accessing 8 bytes in a region of size 4 [-Wstringop-overflow=]
typedef struct test_struct
{
int type;
const char *file; // removing this fix warning
int line; // removing this fix warning
} test_struct;
// warning only when ext_names is second argument
test_struct test_bug(uint32_t *queue_info_count, const char *ext_names[]){
test_struct retval = (test_struct){ .type = 0,};
printf("test_bug %sn",ext_names[*queue_info_count]);
return retval;
}
// no warning
test_struct test_no_bug(const char *ext_names[], uint32_t *queue_info_count){
test_struct retval = (test_struct){ .type = 0,};
printf("test_no_bug %sn",ext_names[*queue_info_count]);
return retval;
}
int main(void)
{
printf("Hello, world!n");
uint32_t queue_info_count = 0;
const char *extension_names[] = {
"test",
};
test_bug(&queue_info_count, extension_names); // warning
test_no_bug(extension_names, &queue_info_count); // no warning
return 0;
}
用GCC 11编译这段代码总是在第41行test_bug
上显示警告。Clang和其他版本的GCC不显示任何警告。
这是一个bug吗?如何使这个代码正确呢?谢谢。
我得到这个警告的原始代码非常大,test_bug
函数从代码的许多部分使用了数百次,并且在逻辑中间只有一个警告。
这是一个GCC错误,但它已经在主干版本中修复了https://gcc.godbolt.org/z/3s6haqvWP