Your message dated Thu, 22 Aug 2019 03:14:43 +0000
with message-id <[email protected]>
and subject line Bug#935238: Removed package(s) from unstable
has caused the Debian Bug report #825347,
regarding kvpnc: crashes whenever it is refused to open the wallet
to be marked as done.
This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.
(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [email protected]
immediately.)
--
825347: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=825347
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: kvpnc
Version: 0.9.6a-4
Severity: minor
Tags: patch
Hi,
If kvpnc is launched and no wallet is open, there's a password prompt
that appears. Whenever the user "cancels" that prompt, kvpnc crashes
due to a null ptr dereference.
Attached patch should fix the crash, but it might not be a full fix.
Cheers,
--
Raphael Geissert - Debian Developer
www.debian.org - get.debian.net
Index: kvpnc-0.9.6a/src/kvpncconfig.cpp
===================================================================
--- kvpnc-0.9.6a.orig/src/kvpncconfig.cpp
+++ kvpnc-0.9.6a/src/kvpncconfig.cpp
@@ -1013,7 +1013,7 @@ void KVpncConfig::loadOptions()
appendLogEntry(i18n("Wallet is closed, try to open it..."), KVpncEnum::debug);
// Open local wallet
wallet = KWallet::Wallet::openWallet(KWallet::Wallet::LocalWallet(), parent->winId());
- if (wallet->isOpen()) {
+ if (wallet && wallet->isOpen()) {
kwalletOpened = true;
if (KvpncDebugLevel > 2)
appendLogEntry(i18n("Wallet opened."), KVpncEnum::debug);
@@ -1023,7 +1023,7 @@ void KVpncConfig::loadOptions()
appendLogEntry(i18n("Wallet could not be opened."), KVpncEnum::debug);
// ok, we wait some time...
sleep(3);
- if (wallet->isOpen()) {
+ if (wallet && wallet->isOpen()) {
kwalletOpened = true;
if (KvpncDebugLevel > 2)
appendLogEntry(i18n("Wallet opened (second try)."), KVpncEnum::debug);
--- End Message ---
--- Begin Message ---
Version: 0.9.6a-4.1+rm
Dear submitter,
as the package kvpnc has just been removed from the Debian archive
unstable we hereby close the associated bug reports. We are sorry
that we couldn't deal with your issue properly.
For details on the removal, please see https://bugs.debian.org/935238
The version of this package that was in Debian prior to this removal
can still be found using http://snapshot.debian.org/.
This message was generated automatically; if you believe that there is
a problem with it please contact the archive administrators by mailing
[email protected].
Debian distribution maintenance software
pp.
Scott Kitterman (the ftpmaster behind the curtain)
--- End Message ---
_______________________________________________
pkg-kde-extras mailing list
[email protected]
https://alioth-lists.debian.net/cgi-bin/mailman/listinfo/pkg-kde-extras