diff options
author | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2024-03-04 15:24:42 +0100 |
---|---|---|
committer | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2024-03-04 15:24:42 +0100 |
commit | 7eae679a4162e1bc0c50fc7d504f7532ec5fdb3c (patch) | |
tree | 27670622b2d80c39e9543cf57a98f80ee6399eb6 | |
parent | 1e797106dafc30c4e6db65bbc2783d8ac0fc8c68 (diff) | |
parent | 21967eef1aedb046f7260c3fc58e0b046908d793 (diff) | |
download | ayatana-indicator-display-7eae679a4162e1bc0c50fc7d504f7532ec5fdb3c.tar.gz ayatana-indicator-display-7eae679a4162e1bc0c50fc7d504f7532ec5fdb3c.tar.bz2 ayatana-indicator-display-7eae679a4162e1bc0c50fc7d504f7532ec5fdb3c.zip |
Merge branch 'gber-personal/gber/fix-uninitialized-mem'
Attributes GH PR #93: https://github.com/AyatanaIndicators/ayatana-indicator-display/pull/93
-rw-r--r-- | src/service.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/service.cpp b/src/service.cpp index f3fd33b..a8d6839 100644 --- a/src/service.cpp +++ b/src/service.cpp @@ -1141,8 +1141,8 @@ private: GSettings *pMetacitySettings = NULL; GSettings *pColorSchemeSettings = NULL; gboolean bTest; - guint nGreeterSubscription; - GDBusConnection *pConnection; + guint nGreeterSubscription = 0; + GDBusConnection *pConnection = NULL; gchar *sUser = NULL; GSList *lUsers = NULL; gboolean bReadingAccountsService = FALSE; |