]> git.ipfire.org Git - thirdparty/glibc.git/blobdiff - posix/regexbug1.c
elf: Refuse to dlopen PIE objects [BZ #24323]
[thirdparty/glibc.git] / posix / regexbug1.c
index 28640968d039d0342751ca5941a4ac540a9f2f0e..17643e7e4de3e05f3215f17deafe9ef6fa0752af 100644 (file)
@@ -18,7 +18,7 @@ main (void)
     {
       char buf[100];
       regerror (reerr, &re, buf, sizeof buf);
-      error (EXIT_FAILURE, 0, buf);
+      error (EXIT_FAILURE, 0, "%s", buf);
     }
 
   if (regexec (&re, "002", 2, ma, 0) != 0)
@@ -35,7 +35,7 @@ main (void)
     {
       char buf[100];
       regerror (reerr, &re, buf, sizeof buf);
-      error (EXIT_FAILURE, 0, buf);
+      error (EXIT_FAILURE, 0, "%s", buf);
     }
 
   if (regexec (&re, "002", 2, ma, 0) != 0)