public inbox for git-commits@fedoraproject.org
help / color / mirror / Atom feed
* [rpms/glib2] cve-2026-58016-f44: try again
@ 2026-08-11 10:33 Matthias Clasen
  0 siblings, 0 replies; 3+ messages in thread
From: Matthias Clasen @ 2026-08-11 10:33 UTC (permalink / raw)
  To: git-commits

A new commit has been pushed.

Repo   : rpms/glib2
Branch : cve-2026-58016-f44
Commit : 17f51fad85db271f0854b475206b47acf946b01b
Author : Matthias Clasen <mclasen@fedoraproject.org>
Date   : 2006-05-25T14:36:42+00:00
Stats  : +2/-0 in 1 file(s)
URL    : https://src.fedoraproject.org/rpms/glib2/c/17f51fad85db271f0854b475206b47acf946b01b?branch=cve-2026-58016-f44

Log:
try again

---
diff --git a/glib2.spec b/glib2.spec
index a1b406c..fbe2e52 100644
--- a/glib2.spec
+++ b/glib2.spec
@@ -44,6 +44,8 @@ version 2 of the GLib library.
 
 %build
 
+# .libdir touches .am 
+automake-1.7
 for i in config.guess config.sub ; do
 	test -f /usr/share/libtool/$i && cp /usr/share/libtool/$i .
 done

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [rpms/glib2] cve-2026-58016-f44: try again
@ 2026-08-11 10:35 Matthias Clasen
  0 siblings, 0 replies; 3+ messages in thread
From: Matthias Clasen @ 2026-08-11 10:35 UTC (permalink / raw)
  To: git-commits

A new commit has been pushed.

Repo   : rpms/glib2
Branch : cve-2026-58016-f44
Commit : 02cd00b246adbd2b79a64263db0bcef4c825f007
Author : Matthias Clasen <mclasen@redhat.com>
Date   : 2012-06-26T01:15:10-04:00
Stats  : +1/-1 in 1 file(s)
URL    : https://src.fedoraproject.org/rpms/glib2/c/02cd00b246adbd2b79a64263db0bcef4c825f007?branch=cve-2026-58016-f44

Log:
try again

---
diff --git a/glib2.spec b/glib2.spec
index 204e354..7cfa425 100644
--- a/glib2.spec
+++ b/glib2.spec
@@ -70,7 +70,7 @@ mv  $RPM_BUILD_ROOT%{_bindir}/gio-querymodules $RPM_BUILD_ROOT%{_bindir}/gio-que
 touch $RPM_BUILD_ROOT%{_libdir}/gio/modules/giomodule.cache
 
 # bash-completion scripts need not be executable
-chmod 644 $RPM_BUILD_ROOT%{_sysconfdir}/bash_completion.d/*.sh
+chmod 644 $RPM_BUILD_ROOT%{_datadir}/bash-completion/completions/*
 
 %find_lang glib20
 

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [rpms/glib2] cve-2026-58016-f44: try again
@ 2026-08-11 10:33 Matthias Clasen
  0 siblings, 0 replies; 3+ messages in thread
From: Matthias Clasen @ 2026-08-11 10:33 UTC (permalink / raw)
  To: git-commits

A new commit has been pushed.

Repo   : rpms/glib2
Branch : cve-2026-58016-f44
Commit : 7e27575d879907bfbf9edb34935267a8a1f89204
Author : Matthias Clasen <mclasen@fedoraproject.org>
Date   : 2007-07-13T02:24:09+00:00
Stats  : +5/-5 in 1 file(s)
URL    : https://src.fedoraproject.org/rpms/glib2/c/7e27575d879907bfbf9edb34935267a8a1f89204?branch=cve-2026-58016-f44

Log:
try again

---
diff --git a/ppc-cast.patch b/ppc-cast.patch
index 6ed5cf2..a599704 100644
--- a/ppc-cast.patch
+++ b/ppc-cast.patch
@@ -6,21 +6,21 @@ diff -up glib-2.13.7/glib/gthread.c.ppc-cast glib-2.13.7/glib/gthread.c
                     gsize           initialization_value)
  {
 -  g_return_if_fail (g_atomic_pointer_get (value_location) == 0);
-+  g_return_if_fail (g_atomic_pointer_get ((void*) value_location) == 0);
++  g_return_if_fail (g_atomic_pointer_get ((gpointer*) value_location) == 0);
    g_return_if_fail (initialization_value != 0);
    g_return_if_fail (g_once_init_list != NULL);
  
 -  g_atomic_pointer_set (value_location, initialization_value);
-+  g_atomic_pointer_set ((void*) value_location, (void*) initialization_value);
++  g_atomic_pointer_set ((gpointer*) value_location, (gpointer) initialization_value);
    g_mutex_lock (g_once_mutex);
-   g_once_init_list = g_slist_remove (g_once_init_list, (void*) value_location);
+   g_once_init_list = g_slist_remove (g_once_init_list, (gpointer*) value_location);
    g_cond_broadcast (g_once_cond);
 @@ -255,7 +255,7 @@ g_static_mutex_get_mutex_impl (GMutex** 
    g_mutex_lock (g_once_mutex);
  
    if (!(*mutex))
 -    g_atomic_pointer_set (mutex, g_mutex_new());
-+    g_atomic_pointer_set ((void*) mutex, g_mutex_new());
++    g_atomic_pointer_set ((gpointer*) mutex, g_mutex_new());
  
    g_mutex_unlock (g_once_mutex);
  
@@ -32,7 +32,7 @@ diff -up glib-2.13.7/glib/gthread.h.ppc-cast glib-2.13.7/glib/gthread.h
  g_once_init_enter (volatile gsize *value_location)
  {
 -  if G_LIKELY (g_atomic_pointer_get (value_location) !=0)
-+  if G_LIKELY (g_atomic_pointer_get ((void*) value_location) !=0)
++  if G_LIKELY (g_atomic_pointer_get ((gpointer*) value_location) !=0)
      return FALSE;
    else
      return g_once_init_enter_impl (value_location);

^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2026-08-11 10:35 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2026-08-11 10:33 [rpms/glib2] cve-2026-58016-f44: try again Matthias Clasen
2026-08-11 10:33 Matthias Clasen
2026-08-11 10:35 Matthias Clasen

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