Go to:
Gentoo Home
Documentation
Forums
Lists
Bugs
Planet
Store
Wiki
Get Gentoo!
Gentoo's Bugzilla – Attachment 864444 Details for
Bug 901775
x11-misc/tint2-17.1.3: crashes with >=dev-libs/glib-2.76.0
Home
|
New
–
[Ex]
|
Browse
|
Search
|
Privacy Policy
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Patch from the Arch Linux forum for tint2-17.0.2 with glib-2.76
tint2-17.0.2_glib-2.76.patch (text/plain), 718 bytes, created by
Nathan Zachary
on 2023-06-23 14:21:51 UTC
(
hide
)
Description:
Patch from the Arch Linux forum for tint2-17.0.2 with glib-2.76
Filename:
MIME Type:
Creator:
Nathan Zachary
Created:
2023-06-23 14:21:51 UTC
Size:
718 bytes
patch
obsolete
>diff --git a/src/util/uevent.c b/src/util/uevent.c >index 1d0d11e..7a37453 100644 >--- a/src/util/uevent.c >+++ b/src/util/uevent.c >@@ -157,7 +157,10 @@ void uevent_handler() > > struct uevent *ev = uevent_new(buf, len); > if (ev) { >- for (GList *l = notifiers; l; l = l->next) { >+ /* we might remove elements in the callback so a copy is needed */ >+ GList *list = g_list_copy(notifiers); >+ >+ for (GList *l = list; l; l = l->next) { > struct uevent_notify *nb = l->data; > > if (!(ev->action & nb->action)) >@@ -169,6 +172,7 @@ void uevent_handler() > nb->cb(ev, nb->userdata); > } > >+ g_list_free(list); > uevent_free(ev); > } > }
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 901775
: 864444 |
864742
|
919073