[SCM] ktp-auth-handler packaging branch, master, updated. debian/16.04.2-1-45-g6ae4c33

Maximiliano Curia maxy at moszumanska.debian.org
Tue Sep 12 14:07:18 UTC 2017


Gitweb-URL: http://git.debian.org/?p=pkg-kde/applications/ktp-auth-handler.git;a=commitdiff;h=03508d0

The following commit has been merged in the master branch:
commit 03508d05afe02c17ed7066d78d6f42283c2e14e5
Author: Alexandr Akulich <akulichalexander at gmail.com>
Date:   Sat Sep 24 17:29:44 2016 +0500

    Fixed uninitialized variable usage
    
    Bug reported by the clang static analyzer
    
    REVIEW: 129016
---
 x-telepathy-password-auth-operation.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x-telepathy-password-auth-operation.cpp b/x-telepathy-password-auth-operation.cpp
index be0ed99..9e8bdcc 100644
--- a/x-telepathy-password-auth-operation.cpp
+++ b/x-telepathy-password-auth-operation.cpp
@@ -170,7 +170,7 @@ void XTelepathyPasswordAuthOperation::storeCredentials(const QString &secret)
     QString username = m_account->parameters().value(QStringLiteral("account")).toString();
     Accounts::Manager *manager = KAccounts::accountsManager();
     Accounts::Account *account = manager->account(m_accountStorageId);
-    SignOn::Identity *identity;
+    SignOn::Identity *identity = nullptr;
 
     if (account) {
         Accounts::AccountService *service = new Accounts::AccountService(account, manager->service(QString()), this);

-- 
ktp-auth-handler packaging



More information about the pkg-kde-commits mailing list