From 01d43b049f3836e4f0a35e8a47d7f8a382dc1b0e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ferenc=20G=C3=A9czi?= Date: Tue, 22 Oct 2024 00:00:00 +0000 Subject: [PATCH] [linux][qt] Fix intialization of clientIsActive #9513 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Ferenc Géczi --- platform/qt_location_service.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/platform/qt_location_service.hpp b/platform/qt_location_service.hpp index 66de652ea1..fc534963f5 100644 --- a/platform/qt_location_service.hpp +++ b/platform/qt_location_service.hpp @@ -13,7 +13,7 @@ class QtLocationService : public QObject, public location::LocationService // https://www.freedesktop.org/software/geoclue/docs // /gdbus-org.freedesktop.GeoClue2.Client.html#gdbus-property-org-freedesktop-GeoClue2-Client.Active // But `QGeoPositionInfoSource` doesn't expose that so we have to deduce its state. - bool m_clientIsActive; + bool m_clientIsActive = false; public: explicit QtLocationService(location::LocationObserver &, std::string const &);