Hello community,

here is the log from the commit of package krfb for openSUSE:Factory checked in 
at 2014-09-18 08:00:21
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/krfb (Old)
 and      /work/SRC/openSUSE:Factory/.krfb.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "krfb"

Changes:
--------
--- /work/SRC/openSUSE:Factory/krfb/krfb.changes        2014-08-25 
11:02:36.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.krfb.new/krfb.changes   2014-09-18 
08:01:49.000000000 +0200
@@ -1,0 +2,7 @@
+Sat Sep 13 17:02:26 UTC 2014 - [email protected]
+
+- Update to 4.14.1
+   * KDE 4.14.1 SC Bugfix Release
+   * See http://www.kde.org/announcements/announce-4.14.1.php
+
+-------------------------------------------------------------------
@@ -6 +13 @@
-   * See http://www.kde.org/announcements/4.13/
+   * See http://www.kde.org/announcements/4.14/

Old:
----
  krfb-4.14.0.tar.xz

New:
----
  krfb-4.14.1.tar.xz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ krfb.spec ++++++
--- /var/tmp/diff_new_pack.lGJHBj/_old  2014-09-18 08:01:50.000000000 +0200
+++ /var/tmp/diff_new_pack.lGJHBj/_new  2014-09-18 08:01:50.000000000 +0200
@@ -25,7 +25,7 @@
 BuildRequires:  pkgconfig(xdamage)
 BuildRequires:  pkgconfig(xt)
 BuildRequires:  pkgconfig(xtst)
-Version:        4.14.0
+Version:        4.14.1
 Release:        0
 Summary:        Desktop Sharing
 License:        GPL-2.0+

++++++ krfb-4.14.0.tar.xz -> krfb-4.14.1.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/krfb-4.14.0/krfb/invitationsrfbserver.cpp 
new/krfb-4.14.1/krfb/invitationsrfbserver.cpp
--- old/krfb-4.14.0/krfb/invitationsrfbserver.cpp       2014-07-31 
20:20:32.000000000 +0200
+++ new/krfb-4.14.1/krfb/invitationsrfbserver.cpp       2014-09-11 
00:47:46.000000000 +0200
@@ -54,8 +54,10 @@
 
     instance->m_wallet = Wallet::openWallet(
             Wallet::NetworkWallet(), 0, Wallet::Asynchronous);
-    connect(instance->m_wallet, SIGNAL(walletOpened(bool)),
-            instance, SLOT(walletOpened(bool)));
+    if(instance->m_wallet) {
+        connect(instance->m_wallet, SIGNAL(walletOpened(bool)),
+                instance, SLOT(walletOpened(bool)));
+    }
 }
 
 const QString& InvitationsRfbServer::desktopPassword() const
@@ -121,7 +123,7 @@
     KSharedConfigPtr config = KGlobal::config();
     KConfigGroup krfbConfig(config,"Security");
     krfbConfig.writeEntry("allowUnattendedAccess",m_allowUnattendedAccess);
-    if(m_wallet->isOpen()) {
+    if(m_wallet && m_wallet->isOpen()) {
 
          if( (m_wallet->currentFolder()=="krfb") ||
                  ((m_wallet->hasFolder("krfb") || 
m_wallet->createFolder("krfb")) &&
@@ -150,6 +152,7 @@
 {
     QString desktopPassword;
     QString unattendedPassword;
+    Q_ASSERT(m_wallet);
     if( opened &&
             ( m_wallet->hasFolder("krfb") || m_wallet->createFolder("krfb") ) 
&&
             m_wallet->setFolder("krfb") ) {

-- 
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to