mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2025-12-13 00:10:04 +03:00
update HOMEPAGE : www.ugetdm.com is dead (404), ugetdm.com redirects to the github repo no remote-id for github because it contains only a README update SRC_URI (redirect) useflags reworked : *remove gnutls, it only requires libgcrypt req-use is removed too, libgcrypt/openssl is handled by the useflag openssl *move aria2 in optfeature, it's just called as a runtime-plugin deps : remove libcpre, not required add deps inherited by gtk+:3 patches : fix c23 unprototyped function fix a crash when changing sort (upstream) Closes: https://bugs.gentoo.org/944225 Closes: https://bugs.gentoo.org/944274 Signed-off-by: Nicolas PARLANT <nicolas.parlant@parhuet.fr> Part-of: https://github.com/gentoo/gentoo/pull/43981 Closes: https://github.com/gentoo/gentoo/pull/43981 Signed-off-by: Sam James <sam@gentoo.org>
16 lines
433 B
Diff
16 lines
433 B
Diff
fix crash when changing sort
|
|
https://github.com/ugetdm/uget/issues/40
|
|
patch from upstream: 0c5b01
|
|
--- a/ui-gtk/UgtkApp-callback.c
|
|
+++ b/ui-gtk/UgtkApp-callback.c
|
|
@@ -549,6 +549,9 @@ static void node_updated (UgetNode* child)
|
|
UgtkApp* app;
|
|
|
|
node = child->parent;
|
|
+ if(node == NULL) {
|
|
+ return;
|
|
+ }
|
|
app = node->control->notifier->data;
|
|
if (node == (UgetNode*) app->traveler.category.model->root) {
|
|
// category changed
|