public inbox for git-commits@fedoraproject.org
help / color / mirror / Atom feed
From: Takao Fujiwara <tfujiwar@redhat.com>
To: git-commits@fedoraproject.org
Subject: [rpms/ibus] autotool: Rebuilt with RHEL code reviews
Date: Sun, 31 May 2026 02:06:55 GMT	[thread overview]
Message-ID: <178019321504.1.7663588850461001251.rpms-ibus-d165013e692f@fedoraproject.org> (raw)

A new commit has been pushed.

Repo   : rpms/ibus
Branch : autotool
Commit : d165013e692fda49b8a800436958ba301671f0ea
Author : Takao Fujiwara <tfujiwar@redhat.com>
Date   : 2018-07-23T19:18:36+09:00
Stats  : +45/-9 in 2 file(s)
URL    : https://src.fedoraproject.org/rpms/ibus/c/d165013e692fda49b8a800436958ba301671f0ea?branch=autotool

Log:
Rebuilt with RHEL code reviews

---
diff --git a/ibus-1385349-segv-bus-proxy.patch b/ibus-1385349-segv-bus-proxy.patch
index 995acdd..f206eda 100644
--- a/ibus-1385349-segv-bus-proxy.patch
+++ b/ibus-1385349-segv-bus-proxy.patch
@@ -1,6 +1,6 @@
-From 8c5ccd2c990080e581f6cf5c71d8f5603a87bf15 Mon Sep 17 00:00:00 2001
+From 865b204f1c06b782cf7b4a479b358e76f4b3dfee Mon Sep 17 00:00:00 2001
 From: fujiwarat <takao.fujiwara1@gmail.com>
-Date: Wed, 20 Jun 2018 17:40:15 +0900
+Date: Tue, 17 Jul 2018 13:39:30 +0900
 Subject: [PATCH] bus: Fix SEGV in bus_panel_proxy_focus_in()
 
 BUG=rhbz#1349148
@@ -8,10 +8,12 @@ BUG=rhbz#1385349
 BUG=rhbz#1350291
 BUG=rhbz#1406699
 BUG=rhbz#1432252
+BUG=rhbz#1601577
 ---
- bus/dbusimpl.c | 38 ++++++++++++++++++++++++++++++++------
- bus/ibusimpl.c | 21 ++++++++++++++++++---
- 2 files changed, 50 insertions(+), 9 deletions(-)
+ bus/dbusimpl.c    | 38 ++++++++++++++++++++++++++++++++------
+ bus/engineproxy.c |  5 ++++-
+ bus/ibusimpl.c    | 21 ++++++++++++++++++---
+ 3 files changed, 54 insertions(+), 10 deletions(-)
 
 diff --git a/bus/dbusimpl.c b/bus/dbusimpl.c
 index b54ef817..e4dd8683 100644
@@ -123,6 +125,36 @@ index b54ef817..e4dd8683 100644
  
      if (incoming) {
          /* is incoming message */
+diff --git a/bus/engineproxy.c b/bus/engineproxy.c
+index 2d98995c..d661673a 100644
+--- a/bus/engineproxy.c
++++ b/bus/engineproxy.c
+@@ -665,6 +665,7 @@ bus_engine_proxy_new_internal (const gchar     *path,
+                                IBusEngineDesc  *desc,
+                                GDBusConnection *connection)
+ {
++    GError *error = NULL;
+     g_assert (path);
+     g_assert (IBUS_IS_ENGINE_DESC (desc));
+     g_assert (G_IS_DBUS_CONNECTION (connection));
+@@ -673,7 +674,7 @@ bus_engine_proxy_new_internal (const gchar     *path,
+     BusEngineProxy *engine =
+         (BusEngineProxy *) g_initable_new (BUS_TYPE_ENGINE_PROXY,
+                                            NULL,
+-                                           NULL,
++                                           &error,
+                                            "desc",              desc,
+                                            "g-connection",      connection,
+                                            "g-interface-name",  IBUS_INTERFACE_ENGINE,
+@@ -681,6 +682,8 @@ bus_engine_proxy_new_internal (const gchar     *path,
+                                            "g-default-timeout", g_gdbus_timeout,
+                                            "g-flags",           flags,
+                                            NULL);
++    /* FIXME: rhbz#1601577 */
++    g_assert_no_error (error);
+     const gchar *layout = ibus_engine_desc_get_layout (desc);
+     if (layout != NULL && layout[0] != '\0') {
+         engine->keymap = ibus_keymap_get (layout);
 diff --git a/bus/ibusimpl.c b/bus/ibusimpl.c
 index ec1caea8..9ae3751b 100644
 --- a/bus/ibusimpl.c
@@ -178,5 +210,5 @@ index ec1caea8..9ae3751b 100644
      bus_ibus_impl_component_name_owner_changed (ibus, name, old_name, new_name);
  }
 -- 
-2.14.3
+2.17.1
 

diff --git a/ibus.spec b/ibus.spec
index 22efc75..c11cb0f 100644
--- a/ibus.spec
+++ b/ibus.spec
@@ -39,7 +39,7 @@
 
 Name:           ibus
 Version:        1.5.18
-Release:        11%{?dist}
+Release:        12%{?dist}
 Summary:        Intelligent Input Bus for Linux OS
 License:        LGPLv2+
 Group:          System Environment/Libraries
@@ -52,8 +52,9 @@ Source3:        %{name}-po-1.5.18-20180627.tar.gz
 # Upstreamed patches.
 # Patch0:         %%{name}-HEAD.patch
 Patch0:         %{name}-HEAD.patch
-# Under testing #1349148 #1385349 #1350291 #1406699 #1432252
-Patch1:         %{name}-1385349-segv-bus-proxy.patch
+Patch1:         %{name}-1602549-covscan.patch
+# Under testing #1349148 #1385349 #1350291 #1406699 #1432252 #1601577
+Patch2:         %{name}-1385349-segv-bus-proxy.patch
 
 BuildRequires:  gettext-devel
 BuildRequires:  libtool
@@ -435,6 +436,9 @@ dconf update || :
 %{_datadir}/gtk-doc/html/*
 
 %changelog
+* Mon Jul 23 2018 Takao Fujiwara <tfujiwar@redhat.com> - 1.5.18-12
+- Rebuilt with RHEL code reviews
+
 * Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.5.18-11
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
 

                 reply	other threads:[~2026-05-31  2:06 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=178019321504.1.7663588850461001251.rpms-ibus-d165013e692f@fedoraproject.org \
    --to=tfujiwar@redhat.com \
    --cc=git-commits@fedoraproject.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox