public inbox for git-commits@fedoraproject.org
help / color / mirror / Atom feed
* [rpms/gcc] rhel-f41-base: 3.4.3-19
@ 2026-06-29 12:21 Jakub Jelinek
  0 siblings, 0 replies; only message in thread
From: Jakub Jelinek @ 2026-06-29 12:21 UTC (permalink / raw)
  To: git-commits

A new commit has been pushed.

Repo   : rpms/gcc
Branch : rhel-f41-base
Commit : e34deee2026f372d9f7fb9066b2a68eb2389863c
Author : Jakub Jelinek <jakub@fedoraproject.org>
Date   : 2005-02-12T08:51:45+00:00
Stats  : +4/-1 in 1 file(s)
URL    : https://src.fedoraproject.org/rpms/gcc/c/e34deee2026f372d9f7fb9066b2a68eb2389863c?branch=rhel-f41-base

Log:
3.4.3-19

---
diff --git a/libgcc_post_upgrade.c b/libgcc_post_upgrade.c
index 5e67a21..d2ecdf7 100644
--- a/libgcc_post_upgrade.c
+++ b/libgcc_post_upgrade.c
@@ -17,10 +17,13 @@ int main(void)
   pid_t pid;
   int status;
   char initpath[256];
+  const char *argv[2];
 
   if (access ("/sbin/ldconfig", X_OK))
     _exit (0);
-  execl ("/sbin/ldconfig", "/sbin/ldconfig", NULL);
+  argv[0] = "/sbin/ldconfig";
+  argv[1] = NULL;
+  execv ("/sbin/ldconfig", argv);
   _exit (110);
 }
 

^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2026-06-29 12:21 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2026-06-29 12:21 [rpms/gcc] rhel-f41-base: 3.4.3-19 Jakub Jelinek

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox