]> sourceware.org Git - glibc.git/commitdiff
string: Fix tester build with fortify enable with gcc < 12
authorMahesh Bodapati <bmahi496@linux.ibm.com>
Fri, 11 Aug 2023 15:38:25 +0000 (10:38 -0500)
committerRajalakshmi Srinivasaraghavan <raji@Rajalakshmis-MacBook-Pro.local>
Fri, 18 Aug 2023 12:59:55 +0000 (07:59 -0500)
When building with fortify enabled, GCC < 12 issues a warning on the
fortify strncat wrapper might overflow the destination buffer (the
failure is tied to -Werror).

Checked on ppc64 and x86_64.
Reviewed-by: Adhemerval Zanella <adhemerval.zanella@linaro.org>
string/tester.c

index f7d4bac5a8a906aa7685cfd72422e1f8cdd42149..824cf315ffc3cd1d598b61f5594471ff59dbd8b7 100644 (file)
 DIAG_IGNORE_NEEDS_COMMENT (8, "-Wstringop-truncation");
 #endif
 
+/* When building with fortify enabled, GCC < 12 issues a warning on the
+   fortify strncat wrapper might overflow the destination buffer (the
+   failure is tied to -Werror).
+   Triggered by strncat fortify wrapper when it is enabled.  */
+#if __GNUC_PREREQ (11, 0)
+DIAG_IGNORE_NEEDS_COMMENT (11, "-Wstringop-overread");
+#endif
+
 #include <errno.h>
 #include <stdint.h>
 #include <stdio.h>
@@ -52,9 +60,6 @@ DIAG_IGNORE_NEEDS_COMMENT (5.0, "-Wmemset-transposed-args");
 DIAG_IGNORE_NEEDS_COMMENT (9, "-Wrestrict");
 DIAG_IGNORE_NEEDS_COMMENT (7, "-Wstringop-overflow=");
 #endif
-#if __GNUC_PREREQ (11, 0)
-DIAG_IGNORE_NEEDS_COMMENT (11, "-Wstringop-overread");
-#endif
 
 
 #define        STREQ(a, b)     (strcmp((a), (b)) == 0)
This page took 0.046264 seconds and 5 git commands to generate.