Opened 3 weeks ago

Closed 3 weeks ago

#19703 closed enhancement (fixed)

solid-6.1.1 (for both kde frameworks and lxqt)

Reported by: Bruce Dubbs Owned by: Bruce Dubbs
Priority: normal Milestone: 12.2
Component: BOOK Version: git
Severity: normal Keywords:
Cc:

Description

New point version.

Change History (3)

comment:1 by Bruce Dubbs, 3 weeks ago

Owner: changed from blfs-book to Bruce Dubbs
Status: newassigned

comment:2 by Bruce Dubbs, 3 weeks ago

A very small change:

"There cannot be an empty object path on DBus, so "/" is used to denote no clear text device. Return empty string explicitly here to avoid

littering even more places with empty
"/" checks."

udisksstorageaccess.cpp:

 QString StorageAccess::clearTextPath() const
 {
-    return m_device->prop("CleartextDevice").value<QDBusObjectPath>().path();
+    const QString path = m_device->prop("CleartextDevice").value<QDBusObjectPath>().path();
+    if (path != QLatin1String("/")) {
+        return path;
+    }
+    return QString();
 }

comment:3 by Bruce Dubbs, 3 weeks ago

Resolution: fixed
Status: assignedclosed

Fixed at commits

7c8aded207 Update to vala-0.56.17.
c2441308ab Update to gdk-pixbuf-2.42.11.
ea0364aa2e Update to enchant-2.7.0.
ac286b1aac Update to solid-6.1.1.
Note: See TracTickets for help on using tickets.