Compare commits

...

9 Commits
master ... f23

Author SHA1 Message Date
poma
58034b4a48 Backport a patch to fix a memory leak during initialization in GDBusProxy 2016-06-02 20:35:58 +02:00
Kalev Lember
c059c40ded Update to 2.46.2 2015-11-09 12:00:22 +01:00
Kalev Lember
605fc8b850 Backport an upstream fix for app launching under wayland
https://bugzilla.redhat.com/show_bug.cgi?id=1273146
2015-10-19 22:43:27 +02:00
Kalev Lember
290ce7b9fa Update to 2.46.1 2015-10-14 16:52:18 +02:00
Kalev Lember
55da730b29 Update to 2.46.0 2015-09-21 15:23:23 +02:00
Kalev Lember
e25e4c6444 Update to 2.45.8 2015-09-14 17:14:57 +02:00
Kalev Lember
5277d04088 Update to 2.45.7 2015-09-01 18:23:36 +02:00
Kalev Lember
3ef6e941ce Update to 2.45.6 2015-08-19 22:46:35 +02:00
Kalev Lember
a5aa8a4b38 Update to 2.45.5 2015-08-19 22:17:03 +02:00
3 changed files with 61 additions and 4 deletions

View File

@ -0,0 +1,25 @@
From e98e1eff83c742c73a148dd7b75c00d77e0cee40 Mon Sep 17 00:00:00 2001
From: Evangelos Foutras <evangelos@foutrelis.com>
Date: Wed, 25 Nov 2015 23:29:18 +0200
Subject: [PATCH] GDBusProxy: Fix a memory leak during initialization
https://bugzilla.gnome.org/show_bug.cgi?id=758641
---
gio/gdbusproxy.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/gio/gdbusproxy.c b/gio/gdbusproxy.c
index 52a22fb..7b1140f 100644
--- a/gio/gdbusproxy.c
+++ b/gio/gdbusproxy.c
@@ -1720,6 +1720,7 @@ async_initable_init_second_finish (GAsyncInitable *initable,
if (result != NULL)
{
process_get_all_reply (proxy, result);
+ g_variant_unref (result);
}
proxy->priv->initialized = TRUE;
--
2.4.11

View File

@ -2,13 +2,17 @@
Summary: A library of handy utility functions
Name: glib2
Version: 2.45.4
Release: 1%{?dist}
Version: 2.46.2
Release: 2%{?dist}
License: LGPLv2+
Group: System Environment/Libraries
URL: http://www.gtk.org
#VCS: git:git://git.gnome.org/glib
Source: http://download.gnome.org/sources/glib/2.45/glib-%{version}.tar.xz
Source: http://download.gnome.org/sources/glib/2.46/glib-%{version}.tar.xz
# Backported from upstream
# GDBusProxy: Fix a memory leak during initialization
# https://git.gnome.org/browse/glib/commit/gio/gdbusproxy.c?h=glib-2-46&id=e98e1ef
Patch0: 0001-GDBusProxy-Fix-a-memory-leak-during-initialization.patch
BuildRequires: pkgconfig
BuildRequires: gettext
@ -81,6 +85,7 @@ the functionality of the installed glib2 package.
%prep
%setup -q -n glib-%{version}
%patch0 -p1
%build
# Support builds of both git snapshots and tarballs packed with autogoo
@ -218,6 +223,33 @@ gio-querymodules-%{__isa_bits} %{_libdir}/gio/modules
%{_datadir}/installed-tests
%changelog
* Thu Jun 02 2016 poma <poma@gmail.com> - 2.46.2-2
- Backport a patch to fix a memory leak during initialization in GDBusProxy
* Mon Nov 09 2015 Kalev Lember <klember@redhat.com> - 2.46.2-1
- Update to 2.46.2
* Mon Oct 19 2015 Kalev Lember <klember@redhat.com> - 2.46.1-2
- Backport an upstream fix for app launching under wayland (#1273146)
* Wed Oct 14 2015 Kalev Lember <klember@redhat.com> - 2.46.1-1
- Update to 2.46.1
* Mon Sep 21 2015 Kalev Lember <klember@redhat.com> - 2.46.0-1
- Update to 2.46.0
* Mon Sep 14 2015 Kalev Lember <klember@redhat.com> - 2.45.8-1
- Update to 2.45.8
* Tue Sep 01 2015 Kalev Lember <klember@redhat.com> - 2.45.7-1
- Update to 2.45.7
* Wed Aug 19 2015 Kalev Lember <klember@redhat.com> - 2.45.6-1
- Update to 2.45.6
* Wed Aug 19 2015 Kalev Lember <klember@redhat.com> - 2.45.5-1
- Update to 2.45.5
* Tue Jul 21 2015 David King <amigadave@amigadave.com> - 2.45.4-1
- Update to 2.45.4

View File

@ -1 +1 @@
1d7e531bb84500fff5a804dc5f6f37d6 glib-2.45.4.tar.xz
7f815d6e46df68e070cb421ed7f1139e glib-2.46.2.tar.xz