svn commit: r493725 - in head/devel/glib20: . files
Ashish SHUKLA
ashish at FreeBSD.org
Sat Feb 23 18:56:36 UTC 2019
Author: ashish
Date: Sat Feb 23 18:56:35 2019
New Revision: 493725
URL: https://svnweb.freebsd.org/changeset/ports/493725
Log:
- Add fix for the GNOME glib upstream bug report 1697 which is breaking
net-im/gajim when starting up
PR: 235965
Approved by: kwm (IRC)
Added:
head/devel/glib20/files/patch-gio_gthreadedresolver.c (contents, props changed)
Modified:
head/devel/glib20/Makefile
Modified: head/devel/glib20/Makefile
==============================================================================
--- head/devel/glib20/Makefile Sat Feb 23 18:52:42 2019 (r493724)
+++ head/devel/glib20/Makefile Sat Feb 23 18:56:35 2019 (r493725)
@@ -3,7 +3,7 @@
PORTNAME= glib
PORTVERSION= 2.56.3
-PORTREVISION= 2
+PORTREVISION= 3
PORTEPOCH= 1
CATEGORIES= devel
MASTER_SITES= GNOME
Added: head/devel/glib20/files/patch-gio_gthreadedresolver.c
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/devel/glib20/files/patch-gio_gthreadedresolver.c Sat Feb 23 18:56:35 2019 (r493725)
@@ -0,0 +1,12 @@
+Upstream bug: https://gitlab.gnome.org/GNOME/glib/issues/1697
+
+--- gio/gthreadedresolver.c.orig
++++ gio/gthreadedresolver.c
+@@ -836,6 +836,7 @@
+ * worker thread. (Although the workers would get reused by the
+ * #GThreadPool.) */
+ struct __res_state res;
++ memset( &res, 0, sizeof( res ));
+ if (res_ninit (&res) != 0)
+ {
+ g_task_return_new_error (task, G_RESOLVER_ERROR, G_RESOLVER_ERROR_INTERNAL,
More information about the svn-ports-head
mailing list