summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Palimaka <kensington@gentoo.org>2017-11-19 17:13:01 +1100
committerMichael Palimaka <kensington@gentoo.org>2017-11-19 17:14:22 +1100
commit36d5d1ee683c56a9fb9d18be0e885c3e849d5d57 (patch)
tree6b98d7b11ecb9a08ba33c620f05fe037761f1da1 /net-irc/konversation/files
parentnet-irc/konversation: stabilise 1.7.4 for amd64/x86 (diff)
downloadgentoo-36d5d1ee683c56a9fb9d18be0e885c3e849d5d57.tar.gz
gentoo-36d5d1ee683c56a9fb9d18be0e885c3e849d5d57.tar.bz2
gentoo-36d5d1ee683c56a9fb9d18be0e885c3e849d5d57.zip
net-irc/konversation: remove vulnerable
Bug: https://bugs.gentoo.org/637112 Package-Manager: Portage-2.3.8, Repoman-2.3.4
Diffstat (limited to 'net-irc/konversation/files')
-rw-r--r--net-irc/konversation/files/konversation-1.7.2-extjoin-crash.patch47
-rw-r--r--net-irc/konversation/files/konversation-1.7.2-focus.patch25
-rw-r--r--net-irc/konversation/files/konversation-1.7.2-memleak.patch33
3 files changed, 0 insertions, 105 deletions
diff --git a/net-irc/konversation/files/konversation-1.7.2-extjoin-crash.patch b/net-irc/konversation/files/konversation-1.7.2-extjoin-crash.patch
deleted file mode 100644
index 97fc4c1494c2..000000000000
--- a/net-irc/konversation/files/konversation-1.7.2-extjoin-crash.patch
+++ /dev/null
@@ -1,47 +0,0 @@
-From 783dc0f595ecf90e37225a57da0ffa2c030a470d Mon Sep 17 00:00:00 2001
-From: Peter Simonsson <peter.simonsson@gmail.com>
-Date: Sat, 10 Jun 2017 20:41:50 +0200
-Subject: Fix crash in join handling in inputfilter
-
-Make sure to check size of parameter list for extended join.
-
-BUG:378854
----
- src/irc/inputfilter.cpp | 19 ++++++-------------
- 1 file changed, 6 insertions(+), 13 deletions(-)
-
-diff --git a/src/irc/inputfilter.cpp b/src/irc/inputfilter.cpp
-index 53f3b2c..f273d30 100644
---- a/src/irc/inputfilter.cpp
-+++ b/src/irc/inputfilter.cpp
-@@ -575,21 +575,14 @@ void InputFilter::parseClientCommand(const QString &prefix, const QString &comma
- QString account;
- QString realName;
-
-- if (!m_server->hasExtendedJoin())
-- {
-- channelName = trailing;
-- // Sometimes JOIN comes without ":" in front of the channel name
-- }
-- else
-+ channelName = parameterList[0];
-+
-+ if (m_server->hasExtendedJoin() && plHas(3))
- {
-- channelName = parameterList[0];
-- account = parameterList[1];
-- realName = parameterList[2];
-+ if (parameterList[1] != "*")
-+ account = parameterList[1];
-
-- if (account == "*")
-- {
-- account = QString();
-- }
-+ realName = parameterList[2];
- }
-
- // Did we join the channel, or was it someone else?
---
-cgit v0.11.2
-
diff --git a/net-irc/konversation/files/konversation-1.7.2-focus.patch b/net-irc/konversation/files/konversation-1.7.2-focus.patch
deleted file mode 100644
index b42bed488f33..000000000000
--- a/net-irc/konversation/files/konversation-1.7.2-focus.patch
+++ /dev/null
@@ -1,25 +0,0 @@
-From 3263b47db2d0aab78d6a6fbc99682ac9b5ef2f2e Mon Sep 17 00:00:00 2001
-From: Eike Hein <hein@kde.org>
-Date: Wed, 21 Jun 2017 06:36:26 +0900
-Subject: Don't commit on focus loss.
-
----
- src/irc/channel.cpp | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/src/irc/channel.cpp b/src/irc/channel.cpp
-index a431c80..a5c313e 100644
---- a/src/irc/channel.cpp
-+++ b/src/irc/channel.cpp
-@@ -292,7 +292,7 @@ Channel::Channel(QWidget* parent, const QString& _name) : ChatWindow(parent)
- connect(nicknameCombobox,SIGNAL (activated(int)),this,SLOT(nicknameComboboxChanged()));
-
- if(nicknameCombobox->lineEdit())
-- connect(nicknameCombobox->lineEdit(), SIGNAL (editingFinished()),this,SLOT(nicknameComboboxChanged()));
-+ connect(nicknameCombobox->lineEdit(), SIGNAL (returnPressed()),this,SLOT(nicknameComboboxChanged()));
-
-
- connect(&userhostTimer,SIGNAL (timeout()),this,SLOT (autoUserhost()));
---
-cgit v0.11.2
-
diff --git a/net-irc/konversation/files/konversation-1.7.2-memleak.patch b/net-irc/konversation/files/konversation-1.7.2-memleak.patch
deleted file mode 100644
index c079809f0c60..000000000000
--- a/net-irc/konversation/files/konversation-1.7.2-memleak.patch
+++ /dev/null
@@ -1,33 +0,0 @@
-From cb2c91f06bc9247520474372d163bd0520f4db42 Mon Sep 17 00:00:00 2001
-From: Gun Park <mujjingun@gmail.com>
-Date: Mon, 10 Jul 2017 16:59:28 +0900
-Subject: Fix memory leak
-
-Reviewers: hein
-
-Reviewed By: hein
-
-Differential Revision: https://phabricator.kde.org/D6580
----
- src/viewer/viewcontainer.cpp | 5 ++---
- 1 file changed, 2 insertions(+), 3 deletions(-)
-
-diff --git a/src/viewer/viewcontainer.cpp b/src/viewer/viewcontainer.cpp
-index 31ff633..94d498e 100644
---- a/src/viewer/viewcontainer.cpp
-+++ b/src/viewer/viewcontainer.cpp
-@@ -2786,9 +2786,8 @@ void ViewContainer::showJoinChannelDialog()
- if (dlg->exec() == QDialog::Accepted)
- {
- Server *server = Application::instance()->getConnectionManager()->getServerByConnectionId(dlg->connectionId());
-- if (!server)
-- return;
-- server->sendJoinCommand(dlg->channel(), dlg->password());
-+ if (server)
-+ server->sendJoinCommand(dlg->channel(), dlg->password());
- }
- delete dlg;
- }
---
-cgit v0.11.2
-