GCC stringop bugoxen-io/oxen-libquic#136 Open dr7anaadded a commit to dr7ana/libquic that referenced this issueJun 4, 2024 GCC stringop bugfix… c6b2b66 dr7anaadded a commit to dr7ana/libquic that referenced this issueJun 4, 2024 ...
changed the title [-][bug]: app_sms: Compilation failure in DEVMODE due to stringop-overflow error[/-] [+][bug]: app_sms: Compilation failure in DEVMODE due to stringop-overflow error in GCC 15 pre-release[/+] on Apr 2, 2025 seanbright commented on Apr 26, 2025 seanbright on ...
This is the final array bounds warning removal for gcc-10 for now. Again, the warning is good, and we should re-enable all these warnings when we have converted all the legacy array declaration cases to flexible arrays. But in the meantime, it's just noise. Signed-off-by: Linus ...
Yeah, it's essentially the same issue (a gcc bug). It should be fixed in gcc 11 and in the meantime you could suppress it with FMT_SYSTEM or other means. vitaut closed this as completed Feb 1, 2024 vitaut added the duplicate label Feb 1, 2024 Sign...
The current gcc-10 snapshot produces a false-positive warning: net/core/drop_monitor.c: In function 'trace_drop_common.constprop': cc1: error: writing 8 bytes into a region of size 0 [-Werror=stringop-overflow=] In file included from net/core/drop_monitor.c:23: include/uapi/linux/net...
GCC Version: gcc (GCC) 13.0.0 20220529 (experimental) steps to reproduce: # build gcc with git@master cd / && git clone --depth 1 --single-branch --branch master https://github.com/gcc-mirror/gcc.git GMP_VERSION="6.2.1" MPFR_VERSION="4.1...
gcc 10 seems to think of assigning to an (unsigned) char array as a stringop and demands additional space for a terminating '\0': In function 'ssl3_generate_key_block', inlined from 'ssl3_setup_key_block' at ssl/s3_enc.c:304:11: ssl/s3_enc.c:51:20: error: writing 1 byte int...
Silence gcc false positive… Verified 1f6dba7 SeanTAllenadded a commit that referenced this issueSep 12, 2021 Silence gcc false positive… Verified 87f7cae SeanTAllenself-assigned thisSep 12, 2021 SeanTAllenremovedneeds investigationThis needs to be looked into before its "ready for work"help wan...