update version to 0.112

This commit is contained in:
zou_lin77 2021-12-29 15:54:04 +08:00
parent 46628cbecb
commit 0b144a132f
4 changed files with 8 additions and 34 deletions

View File

@ -1,31 +0,0 @@
From f52e1f5c91a02b581abaad312134740d590c4270 Mon Sep 17 00:00:00 2001
From: Zhipeng Xie <xiezhipeng1@huawei.com>
Date: Tue, 10 Apr 2018 11:46:38 +0800
Subject: [PATCH] Fix double free for data.channel
Signed-off-by: Zhipeng Xie <xiezhipeng1@huawei.com>
---
dbus/dbus-binding-tool-glib.c | 2 ++
1 file changed, 2 insertions(+)
diff --git a/dbus/dbus-binding-tool-glib.c b/dbus/dbus-binding-tool-glib.c
index ff0bb47..6d1c032 100644
--- a/dbus/dbus-binding-tool-glib.c
+++ b/dbus/dbus-binding-tool-glib.c
@@ -870,11 +870,13 @@ dbus_binding_tool_output_glib_server (BaseInfo *info, GIOChannel *channel, const
ret = FALSE;
g_io_channel_shutdown (data.channel, TRUE, error);
g_io_channel_unref (data.channel);
+ data.channel = NULL;
goto io_lose;
}
g_io_channel_shutdown (data.channel, TRUE, error);
g_io_channel_unref (data.channel);
+ data.channel = NULL;
/* Now spawn glib-genmarshal to insert all our required marshallers */
argv = g_ptr_array_new ();
--
1.7.12.4

Binary file not shown.

BIN
dbus-glib-0.112.tar.gz Normal file

Binary file not shown.

View File

@ -1,11 +1,10 @@
Name: dbus-glib Name: dbus-glib
Version: 0.110 Version: 0.112
Release: 6 Release: 1
Summary: GLib bindings for DBUS Summary: GLib bindings for DBUS
License: AFL and GPLv2+ License: AFL and GPLv2+
URL: http://www.freedesktop.org/software/dbus/ URL: http://www.freedesktop.org/software/dbus/
Source0: https://dbus.freedesktop.org/releases/dbus-glib/%{name}-%{version}.tar.gz Source0: https://dbus.freedesktop.org/releases/dbus-glib/%{name}-%{version}.tar.gz
Patch6000: 0001-Fix-double-free-for-data.channel.patch
BuildRequires: gcc gettext chrpath BuildRequires: gcc gettext chrpath
BuildRequires: pkgconfig(dbus-1) >= 1.8 pkgconfig(glib-2.0) >= 2.40.0 expat-devel >= 1.95.5 BuildRequires: pkgconfig(dbus-1) >= 1.8 pkgconfig(glib-2.0) >= 2.40.0 expat-devel >= 1.95.5
@ -74,6 +73,12 @@ make check
%{_datadir}/gtk-doc/html/%{name} %{_datadir}/gtk-doc/html/%{name}
%changelog %changelog
* Wed Dec 29 2021 zoulin <zoulin13@huawei.com> - 0.112-1
- Type: enhancement
- ID: NA
- SUG: NA
- DESC: update version to 0.112
* Fri Jul 30 2021 chenyanpanHW <chenyanpan@huawei.com> - 0.110-6 * Fri Jul 30 2021 chenyanpanHW <chenyanpan@huawei.com> - 0.110-6
- DESC: delete -S git from %autosetup, and delete BuildRequires git - DESC: delete -S git from %autosetup, and delete BuildRequires git